|
From: Paul S. O. <ps...@us...> - 2002-01-28 12:05:04
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv17149
Modified Files:
posting.php
Log Message:
Fix error in script name, posting vs. viewtopic
Index: posting.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/posting.php,v
retrieving revision 1.140
retrieving revision 1.141
diff -C2 -r1.140 -r1.141
*** posting.php 2002/01/28 00:28:26 1.140
--- posting.php 2002/01/28 12:05:00 1.141
***************
*** 996,999 ****
--- 996,1000 ----
$script_name = "viewtopic.$phpEx";
}
+ $script_name = str_replace("posting.$phpEx", "viewtopic.$phpEx", $script_name);
if( isset($HTTP_SERVER_VARS['SERVER_NAME']) || isset($HTTP_ENV_VARS['SERVER_NAME']) )
|