[-] BO : Premium activation block & logos

This commit is contained in:
François Gaillard
2013-03-05 15:15:18 +01:00
parent fe6cbcedc8
commit 53aefa5b33
+6 -2
View File
@@ -542,8 +542,12 @@ class AdminHomeControllerCore extends AdminController
{
// Cache the logo
if (!file_exists('../img/tmp/preactivation_'.htmlentities((string)$partner->module).'.png'))
@copy(htmlentities((string)$partner->logo), '../img/tmp/preactivation_'.htmlentities((string)$partner->module).'.png');
{
$logo = @Tools::file_get_contents(htmlentities((string)$partner->logo));
if (sizeof($logo) > 0)
file_put_contents('../img/tmp/preactivation_'.htmlentities((string)$partner->module).'.png', $logo);
}
// Check if module is not already installed and configured
$display = 0;
if (file_exists('../config/xml/default_country_modules_list.xml') && filesize('../config/xml/default_country_modules_list.xml') > 10)