diff options
Diffstat (limited to '')
-rw-r--r-- | install.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/install.php b/install.php index 289a32bf0..92c8d7a0b 100644 --- a/install.php +++ b/install.php @@ -380,7 +380,10 @@ INSERT INTO '.$prefixeTable.'config (param,value,comment) // PWG_CHARSET is required for building the fs_themes array in the // themes class - define('PWG_CHARSET', $pwg_charset); + if (!defined('PWG_CHARSET')) + { + define('PWG_CHARSET', $pwg_charset); + } activate_all_themes(); $insert = array( |