// Revert modules check in themeinstallator

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@12420 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
rMalie
2012-01-16 10:04:45 +00:00
parent 4bbcd581c2
commit f12b527744
@@ -624,7 +624,7 @@ class ThemeInstallator extends Module
if (file_exists(_IMPORT_FOLDER_.'modules/'.$row))
{
$module_already_exists = file_exists(_PS_MODULE_DIR_.$row);
$var .= '<input type="checkbox" name="modulesToExport[]" id="'.$row.'" value="'.$row.'" '.(($module_already_exists) ? '' : 'checked="checked"').' /> <label style="display:bock;float:none" for="'.$row.'">'.$row.
$var .= '<input type="checkbox" name="modulesToExport[]" id="'.$row.'" value="'.$row.'" checked="checked" /> <label style="display:bock;float:none" for="'.$row.'">'.$row.
($module_already_exists ? ' <span style="font-size:0.8em">-> '.$this->l('Warning: a module with the same name already exists').'</span>' : '').'</label><br />';
}