From: <w4...@us...> - 2002-09-19 16:10:36
|
Update of /cvsroot/xoops/xoops-current/html/modules/system/admin/modulesadmin In directory usw-pr-cvs1:/tmp/cvs-serv19669/html/modules/system/admin/modulesadmin Modified Files: modulesadmin.php Log Message: Fixed a bad typo. Index: modulesadmin.php =================================================================== RCS file: /cvsroot/xoops/xoops-current/html/modules/system/admin/modulesadmin/modulesadmin.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** modulesadmin.php 18 Sep 2002 11:13:59 -0000 1.4 --- modulesadmin.php 19 Sep 2002 16:10:27 -0000 1.5 *************** *** 60,64 **** clearstatcache(); $file = trim($file); ! if ($file != '' && !preg_matcgh("/^[.]{1,2}$/",$file) && is_dir($modules_dir.'/'.$file)) { if ( !in_array($file, $listed_mods) ) { $module = new XoopsModule(); --- 60,64 ---- clearstatcache(); $file = trim($file); ! if ($file != '' && !preg_match("/^[.]{1,2}$/",$file) && is_dir($modules_dir.'/'.$file)) { if ( !in_array($file, $listed_mods) ) { $module = new XoopsModule(); *************** *** 350,354 **** // the new layer is accounted for in the shutdown() function ! $shutdown[$tree[$cnt][4]] .= "popUp('" . $layer_label[$cnt] . "',false);\n"; } if ($tree[$cnt+1][0]>$tree[$cnt][0] && $cnt<$tmpcount) { --- 350,354 ---- // the new layer is accounted for in the shutdown() function ! $shutdown[$tree[$cnt][4]] .= "popUp('" . $layer_label[$cnt] . "',false);\n"; } if ($tree[$cnt+1][0]>$tree[$cnt][0] && $cnt<$tmpcount) { *************** *** 366,370 **** // not a leaf $currentlink = "#"; ! } else { // a leaf $currentlink = $tree[$cnt][2]; --- 366,370 ---- // not a leaf $currentlink = "#"; ! } else { // a leaf $currentlink = $tree[$cnt][2]; *************** *** 391,395 **** // not a leaf $onmouseover = " onMouseover='moveLayerY(\\\"" . $layer_label[$cnt] . "\\\", currentY) ; popUp" . $layer_label[$cnt] . "();"; ! } else { // a leaf $onmouseover = " onMouseover='shutdown();"; --- 391,395 ---- // not a leaf $onmouseover = " onMouseover='moveLayerY(\\\"" . $layer_label[$cnt] . "\\\", currentY) ; popUp" . $layer_label[$cnt] . "();"; ! } else { // a leaf $onmouseover = " onMouseover='shutdown();"; |