From: <on...@us...> - 2002-09-20 16:14:38
|
Update of /cvsroot/xoops/xoops-current/html/modules/system In directory usw-pr-cvs1:/tmp/cvs-serv954 Modified Files: admin.php Log Message: no message Index: admin.php =================================================================== RCS file: /cvsroot/xoops/xoops-current/html/modules/system/admin.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** admin.php 15 Jul 2002 08:13:43 -0000 1.1.1.1 --- admin.php 20 Sep 2002 16:14:34 -0000 1.2 *************** *** 104,109 **** $counter = 0; while ($file = readdir($handle)) { ! if ( !ereg('[.]',$file) ) { ! include($admin_dir."/".$file."/xoops_version.php"); if ( $modversion['hasAdmin'] ) { echo "<td align='center' valign='bottom' width='19%'>"; --- 104,109 ---- $counter = 0; while ($file = readdir($handle)) { ! if (!preg_match("/[.]/", $file) && !is_dir($file)) { ! include($admin_dir.'/'.$file.'/xoops_version.php'); if ( $modversion['hasAdmin'] ) { echo "<td align='center' valign='bottom' width='19%'>"; |