|
From: Bart v. B. <ba...@us...> - 2002-02-09 15:54:44
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv25652
Modified Files:
functions.php post.php
Log Message:
Fixed 404 for header (#51499)
Index: functions.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/functions.php,v
retrieving revision 1.114
retrieving revision 1.115
diff -C2 -r1.114 -r1.115
*** functions.php 8 Feb 2002 20:54:21 -0000 1.114
--- functions.php 9 Feb 2002 15:54:40 -0000 1.115
***************
*** 789,793 ****
function username_search($search_match, $is_inline_review = 0, $default_list = "")
{
! global $db, $board_config, $template, $lang, $images, $theme, $phpEx;
global $starttime;
--- 789,793 ----
function username_search($search_match, $is_inline_review = 0, $default_list = "")
{
! global $db, $board_config, $template, $lang, $images, $theme, $phpEx, $phpbb_root_path;
global $starttime;
***************
*** 1087,1089 ****
}
! ?>
\ No newline at end of file
--- 1087,1089 ----
}
! ?>
Index: post.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/post.php,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -r1.13 -r1.14
*** post.php 24 Jan 2002 03:26:08 -0000 1.13
--- post.php 9 Feb 2002 15:54:40 -0000 1.14
***************
*** 104,108 ****
function generate_smilies($mode, $page_id)
{
! global $db, $board_config, $template, $lang, $images, $theme, $phpEx;
global $user_ip, $session_length, $starttime;
global $userdata;
--- 104,108 ----
function generate_smilies($mode, $page_id)
{
! global $db, $board_config, $template, $lang, $images, $theme, $phpEx, $phpbb_root_path;
global $user_ip, $session_length, $starttime;
global $userdata;
***************
*** 205,207 ****
}
! ?>
\ No newline at end of file
--- 205,207 ----
}
! ?>
|