Fixed selection of "default" in admin CP default tip
authorDan
Sat, 16 May 2009 09:57:00 -0400
changeset 3 f0a844799a0c
parent 2 178d22e361d6
Fixed selection of "default" in admin CP
plugins/EnaniumBackgrounds.php
--- a/plugins/EnaniumBackgrounds.php	Sun May 10 13:13:04 2009 -0400
+++ b/plugins/EnaniumBackgrounds.php	Sat May 16 09:57:00 2009 -0400
@@ -16,7 +16,7 @@
 $plugins->attachHook('acl_rule_init', '$this->addAdminNode("adm_cat_appearance", "enaniumbg_acppage", "EnaniumConfig", scriptPath . "/plugins/enaniumbg/icons/garden.png");');
 
 $ebg_system_images = array('default', 'aqua', 'blinds', 'dune', 'freshflower', 'garden', 'greenmeadow', 'ladybird', 'raindrops', 'storm', 'twowings', 'wood', 'yellowflower');
-$ebg_images = array();
+$ebg_images = array('default');
 
 $ebg_outsiders = array();
 if ( $dr = @opendir(ENANO_ROOT . '/plugins/enaniumbg') )
@@ -147,7 +147,7 @@
   if ( isset($_POST['enanium_bg']) )
   {
     $bg = $_POST['enanium_bg'];
-    if ( file_exists(ENANO_ROOT . "/plugins/enaniumbg/$bg.jpg") )
+    if ( file_exists(ENANO_ROOT . "/plugins/enaniumbg/$bg.jpg") || $bg === 'default' )
       setConfig('enanium_bg', $bg);
     
     $val = isset($_POST['show_switcher']) ? '1' : '0';