0) { $_CONFIG[$configEntry] += $value; } else { $_CONFIG[$configEntry] = $value; } } // Checks wether the configuration array is set so the config is loaded function isConfigLoaded () { global $_CONFIG; // Check all return ((isset($_CONFIG)) && (is_array($_CONFIG)) && (count($_CONFIG) > 0)); } // Init the config array function initConfig () { global $_CONFIG; // Set a minimum dummy configuration $_CONFIG = array( 'code_length' => 0, 'patch_level' => 0, 'last_update' => time() ); } // [EOF] ?>