more in naming convention applied, you should better kill inc/cache/*.cache files...
[mailer.git] / inc / extensions / ext-birthday.php
index b28aab7e28697b6895f4026e3fcf0481c150efe1..f1384dfc76288e7f7b179f433f0dc06a8a69240b 100644 (file)
@@ -183,15 +183,15 @@ PRIMARY KEY(id)
        break;
 
 default: // Do stuff when extension is loaded
-       $DUMMY = LOAD_CONFIG("0");
+       $dummy = LOAD_CONFIG();
 
        // Copy config to main array
-       $_CONFIG['birthday_points'] = $DUMMY['birthday_points'];
-       $_CONFIG['birthday_mode']   = $DUMMY['birthday_mode'];
-       $_CONFIG['birthday_active'] = $DUMMY['birthday_active'];
+       $_CONFIG['birthday_points'] = $dummy['birthday_points'];
+       $_CONFIG['birthday_mode']   = $dummy['birthday_mode'];
+       $_CONFIG['birthday_active'] = $dummy['birthday_active'];
 
        // Save some RAM...
-       unset($DUMMY);
+       unset($dummy);
 
        if ((defined('__DAILY_RESET')) && ($_CONFIG['birthday_points'] > 0))
        {