]> git.mxchange.org Git - mailer.git/blobdiff - inc/mysql-manager.php
RDF cache garbage collector does no longer kill MXChange cache files
[mailer.git] / inc / mysql-manager.php
index f4fa13aec43280d238688a3aa5c4ce686c366abb..8ddbea29c9404486280f61d5c47c56b11b3f0e92 100644 (file)
@@ -1355,7 +1355,7 @@ function ADD_OPTION_LINES($table, $id, $name, $default="",$special="",$where="")
                // Selection from array
                if (is_array($id) && is_array($name) && sizeof($id) == sizeof($name)) {
                        // Both are arrays
-                       foreach ($id as $idx=>$value) {
+                       foreach ($id as $idx => $value) {
                                $ret .= "<OPTION value=\"".$value."\"";
                                if ($default == $value) $ret .= " selected checked";
                                $ret .= ">".$name[$idx]."</OPTION>\n";
@@ -1531,7 +1531,7 @@ function LOAD_CONFIG($no="0") {
        if ((is_array($cacheArray)) && (isset($cacheArray['config'][$no])) && (is_array($cacheArray['config'][$no]))) {
                // Load config from cache
                //* DEBUG: */ echo gettype($cacheArray['config'][$no])."<br />\n";
-               foreach ($cacheArray['config'][$no] as $key=>$value) {
+               foreach ($cacheArray['config'][$no] as $key => $value) {
                        $CFG_DUMMY[$key] = $value;
                } // END - foreach