|
From: Jon O. <jon...@us...> - 2008-07-15 22:04:22
|
Update of /cvsroot/mxbb/core/includes/shared/phpbb2/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv24122 Modified Files: functions_post.php Log Message: More...of the same Index: functions_post.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/shared/phpbb2/includes/functions_post.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** functions_post.php 9 Sep 2007 16:51:51 -0000 1.1 --- functions_post.php 15 Jul 2008 22:04:18 -0000 1.2 *************** *** 188,192 **** global $userdata, $user_ip; ! include($phpbb_root_path . 'includes/functions_search.'.$phpEx); $current_time = time(); --- 188,195 ---- global $userdata, $user_ip; ! if( !function_exists('add_search_words') ) ! { ! mx_cache::load_file('functions_search', 'phpbb2'); ! } $current_time = time(); *************** *** 460,464 **** if ($mode != 'poll_delete') { ! include($phpbb_root_path . 'includes/functions_search.'.$phpEx); $sql = "DELETE FROM " . POSTS_TABLE . " --- 463,470 ---- if ($mode != 'poll_delete') { ! if( !function_exists('add_search_words') ) ! { ! mx_cache::load_file('functions_search', 'phpbb2'); ! } $sql = "DELETE FROM " . POSTS_TABLE . " |