|
From: Paul S. O. <ps...@us...> - 2002-01-27 02:19:49
|
Update of /cvsroot/phpbb/phpBB2/admin
In directory usw-pr-cvs1:/tmp/cvs-serv3152/admin
Modified Files:
index.php
Log Message:
Remove hard-coded .php
Index: index.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/index.php,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -r1.33 -r1.34
*** index.php 2002/01/25 12:42:49 1.33
--- index.php 2002/01/27 02:19:45 1.34
***************
*** 57,61 ****
while( $file = @readdir($dir) )
{
! if( preg_match("/^admin_.*?\.php$/", $file) )
{
include($file);
--- 57,61 ----
while( $file = @readdir($dir) )
{
! if( preg_match("/^admin_.*?\." . $phpEx . "$/", $file) )
{
include($file);
|