From 06aa7e859cc0594464885ae6639ecb482649c5bf Mon Sep 17 00:00:00 2001 From: mDeflotte Date: Tue, 14 Aug 2012 09:12:20 +0000 Subject: [PATCH] [-] Installer : #PSCFV-3603 - loop while loading logo --- install-dev/controllers/http/configure.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-dev/controllers/http/configure.php b/install-dev/controllers/http/configure.php index 8275c3904..a773016aa 100644 --- a/install-dev/controllers/http/configure.php +++ b/install-dev/controllers/http/configure.php @@ -118,7 +118,7 @@ class InstallControllerHttpConfigure extends InstallControllerHttp if (!$tmp_name || !move_uploaded_file($file['tmp_name'], $tmp_name)) return false; - list($width, $height, $type) = getimagesize($file['tmp_name']); + list($width, $height, $type) = getimagesize($tmp_name); $newheight = ($height > 500) ? 500 : $height; $percent = $newheight / $height;