From: Vincent Vanwaelscappel Date: Thu, 29 Aug 2019 10:23:48 +0000 (+0200) Subject: done #2965 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=b6eb7eb70528f2ea24713e5653532d932226494c;p=cubist_cms-back.git done #2965 --- diff --git a/src/app/Http/Controllers/CubistPWAController.php b/src/app/Http/Controllers/CubistPWAController.php index 2dc838d..bd48a8a 100644 --- a/src/app/Http/Controllers/CubistPWAController.php +++ b/src/app/Http/Controllers/CubistPWAController.php @@ -40,7 +40,7 @@ class CubistPWAController extends CubistFrontController public function favicon() { - $source = $this->data['global']->getImageFile('favicon_android', 'favicon_144'); + $source = $this->data['global']->getImageFile('favicon', 'favicon_144'); $dest = storage_path('favicon.ico'); if (!file_exists($dest) || filemtime($source) > filemtime($dest)) { $ico_lib = new PHP_ICO($source, array(array(16, 16), array(32, 32), array(64, 64), array(128, 128)));