You can subscribe to this list here.
| 2005 |
Jan
|
Feb
|
Mar
(95) |
Apr
(270) |
May
(111) |
Jun
|
Jul
|
Aug
(64) |
Sep
(130) |
Oct
(319) |
Nov
(17) |
Dec
(191) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2006 |
Jan
(53) |
Feb
|
Mar
|
Apr
|
May
(6) |
Jun
(387) |
Jul
(102) |
Aug
(247) |
Sep
(120) |
Oct
(1) |
Nov
(8) |
Dec
(21) |
| 2007 |
Jan
(38) |
Feb
(36) |
Mar
|
Apr
(32) |
May
(135) |
Jun
(523) |
Jul
(192) |
Aug
(103) |
Sep
(533) |
Oct
(77) |
Nov
(23) |
Dec
(203) |
| 2008 |
Jan
(312) |
Feb
(1193) |
Mar
(404) |
Apr
(67) |
May
(62) |
Jun
(497) |
Jul
(297) |
Aug
(110) |
Sep
(335) |
Oct
(256) |
Nov
(50) |
Dec
(118) |
| 2009 |
Jan
(67) |
Feb
(10) |
Mar
(1) |
Apr
(1) |
May
|
Jun
(10) |
Jul
(61) |
Aug
|
Sep
(16) |
Oct
(45) |
Nov
(12) |
Dec
(14) |
| 2010 |
Jan
(30) |
Feb
|
Mar
|
Apr
(4) |
May
|
Jun
|
Jul
(7) |
Aug
(7) |
Sep
(5) |
Oct
(5) |
Nov
|
Dec
|
| 2011 |
Jan
(7) |
Feb
(3) |
Mar
(89) |
Apr
(11) |
May
(5) |
Jun
|
Jul
(8) |
Aug
(1) |
Sep
(2) |
Oct
|
Nov
(2) |
Dec
(89) |
| 2012 |
Jan
(7) |
Feb
(1) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(4) |
Sep
(3) |
Oct
(42) |
Nov
(1) |
Dec
|
| 2013 |
Jan
|
Feb
|
Mar
(19) |
Apr
(90) |
May
(38) |
Jun
(235) |
Jul
(38) |
Aug
(10) |
Sep
|
Oct
(29) |
Nov
|
Dec
|
| 2014 |
Jan
|
Feb
|
Mar
|
Apr
(6) |
May
(52) |
Jun
|
Jul
(7) |
Aug
|
Sep
(17) |
Oct
|
Nov
|
Dec
|
|
From: Jon O. <jon...@us...> - 2008-07-10 23:02:12
|
Update of /cvsroot/mxbb/core/includes/shared/phpbb3/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv21326/shared/phpbb3/includes Modified Files: functions.php functions_hook.php functions_module.php message_parser.php Log Message: Moving load_file to mx_cache... Index: functions.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/shared/phpbb3/includes/functions.php,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** functions.php 5 Jul 2008 22:18:50 -0000 1.20 --- functions.php 10 Jul 2008 23:02:06 -0000 1.21 *************** *** 3020,3024 **** { global $phpbb_root_path, $phpEx; ! mx_page::load_file( 'bbcode'); } --- 3020,3024 ---- { global $phpbb_root_path, $phpEx; ! mx_cache::load_file( 'bbcode'); } Index: message_parser.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/shared/phpbb3/includes/message_parser.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** message_parser.php 22 Feb 2008 23:03:55 -0000 1.3 --- message_parser.php 10 Jul 2008 23:02:07 -0000 1.4 *************** *** 19,23 **** if (!class_exists('bbcode')) { ! mx_page::load_file( 'bbcode'); } --- 19,23 ---- if (!class_exists('bbcode')) { ! mx_cache::load_file( 'bbcode'); } Index: functions_hook.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/shared/phpbb3/includes/functions_hook.php,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** functions_hook.php 18 Jun 2008 17:00:55 -0000 1.17 --- functions_hook.php 10 Jul 2008 23:02:07 -0000 1.18 *************** *** 151,155 **** '#\$auth->acl\(\$user->data\)[^;]*;#si' => '// MX_ACP_REPLACE \0', '#\$user->setup[^;]*;#si' => '// MX_ACP_REPLACE \0', ! '#(include|require)\(([^)]*)\)[^;]*#s' => '// MX_ACP_REPLACE mx_page::load_file(\2, \'phpbb3\')', '#\$user#si' => '$mx_user', '#\$auth#si' => '$phpbb_auth', --- 151,155 ---- '#\$auth->acl\(\$user->data\)[^;]*;#si' => '// MX_ACP_REPLACE \0', '#\$user->setup[^;]*;#si' => '// MX_ACP_REPLACE \0', ! '#(include|require)\(([^)]*)\)[^;]*#s' => '// MX_ACP_REPLACE mx_cache::load_file(\2, \'phpbb3\')', '#\$user#si' => '$mx_user', '#\$auth#si' => '$phpbb_auth', *************** *** 175,179 **** $func_cnt = preg_match_all( "#\nfunction ([^(]*)\\(#si", $script, $func_match ); ! mx_page::load_file( 'utf/utf_tools'); for( $i = 0; $i < $func_cnt; $i++ ) --- 175,179 ---- $func_cnt = preg_match_all( "#\nfunction ([^(]*)\\(#si", $script, $func_match ); ! mx_cache::load_file( 'utf/utf_tools'); for( $i = 0; $i < $func_cnt; $i++ ) *************** *** 276,280 **** } ! } --- 276,280 ---- } ! } Index: functions_module.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/shared/phpbb3/includes/functions_module.php,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** functions_module.php 20 Jun 2008 15:55:04 -0000 1.19 --- functions_module.php 10 Jul 2008 23:02:07 -0000 1.20 *************** *** 414,418 **** global $phpbb_root_path, $phpEx; ! $modulecode = file_get_contents( $filepathname); --- 414,418 ---- global $phpbb_root_path, $phpEx; ! $modulecode = file_get_contents( $filepathname); *************** *** 440,444 **** "#'(" . $FUNCTION_REPLACE . ")'#si" => "'phpBB3::\\1'" ); ! $modulecode = preg_replace( array_keys( $preg_array), $preg_array, $modulecode); --- 440,444 ---- "#'(" . $FUNCTION_REPLACE . ")'#si" => "'phpBB3::\\1'" ); ! $modulecode = preg_replace( array_keys( $preg_array), $preg_array, $modulecode); *************** *** 447,466 **** $modulecode = str_replace('$board_config_', '$config_', $modulecode); $modulecode = str_replace('auth_admin', 'phpbb_auth_admin', $modulecode); ! $modulecode = str_replace('include_once($phpbb_root_path . \'includes/acp/auth.\' . $phpEx);', 'mx_page::load_file(\'acp/auth\', \'phpbb3\');', $modulecode); $modulecode = str_replace('function phpBB3::', 'function phpbb3_', $modulecode); ! $modulecode = preg_replace( '/function ([^(]*)?phpBB3::([^(]*)\(/si', 'function \1\2(', $modulecode); $modulecode = str_replace('$this->phpBB3::', '$this->', $modulecode); $includes_cnt = preg_match_all( '#(include|require)(_once)?\(([^)]*)\);#si', $modulecode, $includes_match); $modulecode = preg_replace( '#(include|require)(_once)?\(([^)]*)\);#si', '// MXP INCLUDE CODE \0', $modulecode); ! ! $cache_file_name = str_replace( '.'. $phpEx, '', $filepathname); $cache_file_name = substr( $cache_file_name, strrpos( $cache_file_name, '/')+1); $cache_file_name = cache_file( $modulecode, $mode, $cache_file_name); ! for ( $i = 0; $i < $includes_cnt; $i++) { ! eval( '$include = ' . $includes_match[3][$i] . ';'); if ( in_array( $include, $this->includes)) { --- 447,466 ---- $modulecode = str_replace('$board_config_', '$config_', $modulecode); $modulecode = str_replace('auth_admin', 'phpbb_auth_admin', $modulecode); ! $modulecode = str_replace('include_once($phpbb_root_path . \'includes/acp/auth.\' . $phpEx);', 'mx_cache::load_file(\'acp/auth\', \'phpbb3\');', $modulecode); $modulecode = str_replace('function phpBB3::', 'function phpbb3_', $modulecode); ! $modulecode = preg_replace( '/function ([^(]*)?phpBB3::([^(]*)\(/si', 'function \1\2(', $modulecode); $modulecode = str_replace('$this->phpBB3::', '$this->', $modulecode); $includes_cnt = preg_match_all( '#(include|require)(_once)?\(([^)]*)\);#si', $modulecode, $includes_match); $modulecode = preg_replace( '#(include|require)(_once)?\(([^)]*)\);#si', '// MXP INCLUDE CODE \0', $modulecode); ! ! $cache_file_name = str_replace( '.'. $phpEx, '', $filepathname); $cache_file_name = substr( $cache_file_name, strrpos( $cache_file_name, '/')+1); $cache_file_name = cache_file( $modulecode, $mode, $cache_file_name); ! for ( $i = 0; $i < $includes_cnt; $i++) { ! eval( '$include = ' . $includes_match[3][$i] . ';'); if ( in_array( $include, $this->includes)) { *************** *** 471,479 **** continue; } ! $filename = str_replace( '.'. $phpEx, '', $include); $filename = substr( $filename, strrpos( $filename, '/')+1); $filename = cache_filename( 'INCLUDE', $filename); ! if ( file_exists( $filename)) { --- 471,479 ---- continue; } ! $filename = str_replace( '.'. $phpEx, '', $include); $filename = substr( $filename, strrpos( $filename, '/')+1); $filename = cache_filename( 'INCLUDE', $filename); ! if ( file_exists( $filename)) { *************** *** 481,490 **** } else ! { $this->includes[$include] = $this->get_code( $include, 'INCLUDE'); } ! } ! return $cache_file_name; } --- 481,490 ---- } else ! { $this->includes[$include] = $this->get_code( $include, 'INCLUDE'); } ! } ! return $cache_file_name; } *************** *** 515,519 **** //include("$module_path/{$this->p_class}_$this->p_name.$phpEx"); ! $cache_file_name = $this->get_code("$module_path/{$this->p_class}_$this->p_name.$phpEx", 'MODULE'); // Do eval() --- 515,519 ---- //include("$module_path/{$this->p_class}_$this->p_name.$phpEx"); ! $cache_file_name = $this->get_code("$module_path/{$this->p_class}_$this->p_name.$phpEx", 'MODULE'); // Do eval() *************** *** 526,534 **** } } ! //print '<pre>'; //print_r( $this->includes); //die(); ! include_once( $cache_file_name); --- 526,534 ---- } } ! //print '<pre>'; //print_r( $this->includes); //die(); ! include_once( $cache_file_name); |
|
From: Jon O. <jon...@us...> - 2008-07-10 23:02:11
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv21326 Modified Files: mx_functions_admincp.php mx_functions_bbcode.php mx_functions_phpbb.php mx_functions_tools.php Log Message: Moving load_file to mx_cache... Index: mx_functions_admincp.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_admincp.php,v retrieving revision 1.54 retrieving revision 1.55 diff -C2 -d -r1.54 -r1.55 *** mx_functions_admincp.php 15 Jun 2008 21:00:00 -0000 1.54 --- mx_functions_admincp.php 10 Jul 2008 23:02:05 -0000 1.55 *************** *** 3128,3133 **** global $db, $phpbb_root_path, $board_config, $lang, $phpEx; ! mx_page::load_file('functions_search', 'phpbb2'); ! //include_once($phpbb_root_path . 'includes/functions_search.' . $phpEx); $search_match_table = MX_MATCH_TABLE; --- 3128,3132 ---- global $db, $phpbb_root_path, $board_config, $lang, $phpEx; ! mx_cache::load_file('functions_search', 'phpbb2'); $search_match_table = MX_MATCH_TABLE; Index: mx_functions_phpbb.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_phpbb.php,v retrieving revision 1.72 retrieving revision 1.73 diff -C2 -d -r1.72 -r1.73 *** mx_functions_phpbb.php 10 Jul 2008 20:46:36 -0000 1.72 --- mx_functions_phpbb.php 10 Jul 2008 23:02:05 -0000 1.73 *************** *** 1661,1666 **** { global $phpbb_root_path, $phpEx; ! mx_page::load_file('bbcode', 'phpbb3'); ! //include($phpbb_root_path . 'includes/bbcode.' . $phpEx); } --- 1661,1665 ---- { global $phpbb_root_path, $phpEx; ! mx_cache::load_file('bbcode', 'phpbb3'); } Index: mx_functions_tools.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_tools.php,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** mx_functions_tools.php 10 Jul 2008 22:58:26 -0000 1.36 --- mx_functions_tools.php 10 Jul 2008 23:02:06 -0000 1.37 *************** *** 1623,1627 **** if( !function_exists('generate_smilies') ) { ! mx_page::load_file('functions_post'); } --- 1623,1627 ---- if( !function_exists('generate_smilies') ) { ! mx_cache::load_file('functions_post'); } *************** *** 3123,3127 **** // Includes // ! mx_page::load_file('functions_search', 'phpbb2'); // --- 3123,3127 ---- // Includes // ! mx_cache::load_file('functions_search', 'phpbb2'); // Index: mx_functions_bbcode.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_bbcode.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** mx_functions_bbcode.php 18 Jun 2008 11:36:06 -0000 1.8 --- mx_functions_bbcode.php 10 Jul 2008 23:02:05 -0000 1.9 *************** *** 105,109 **** $bbcode_tpl['email'] = str_replace('{EMAIL}', '\\1', $bbcode_tpl['email']); ! //Start more bbcode $bbcode_tpl['stream'] = str_replace('{URL}', '\\1', $bbcode_tpl['stream']); --- 105,109 ---- $bbcode_tpl['email'] = str_replace('{EMAIL}', '\\1', $bbcode_tpl['email']); ! //Start more bbcode $bbcode_tpl['stream'] = str_replace('{URL}', '\\1', $bbcode_tpl['stream']); *************** *** 232,236 **** //Strat more bbcode ! // [stream]Sound URL[/stream] code.. $patterns[] = "#\[stream:$uid\](.*?)\[/stream:$uid\]#si"; --- 232,236 ---- //Strat more bbcode ! // [stream]Sound URL[/stream] code.. $patterns[] = "#\[stream:$uid\](.*?)\[/stream:$uid\]#si"; *************** *** 245,257 **** $replacements[] = $bbcode_tpl['video']; $text = preg_replace($patterns, $replacements, $text); ! // [GVideo]GVideo URL[/GVideo] code.. $patterns[] = "#\[GVideo\]http://video.google.[A-Za-z0-9.]{2,5}/videoplay\?docid=([0-9A-Za-z-_]*)[^[]*\[/GVideo\]#is"; $replacements[] = $bbcode_tpl['GVideo']; ! // [youtube]YouTube URL[/youtube] code.. $patterns[] = "#\[youtube\]http://(?:www\.)?youtube.com/watch\?v=([0-9A-Za-z-_]{11})[^[]*\[/youtube\]#is"; ! $replacements[] = $bbcode_tpl['youtube']; ! //Stop more bbcode --- 245,257 ---- $replacements[] = $bbcode_tpl['video']; $text = preg_replace($patterns, $replacements, $text); ! // [GVideo]GVideo URL[/GVideo] code.. $patterns[] = "#\[GVideo\]http://video.google.[A-Za-z0-9.]{2,5}/videoplay\?docid=([0-9A-Za-z-_]*)[^[]*\[/GVideo\]#is"; $replacements[] = $bbcode_tpl['GVideo']; ! // [youtube]YouTube URL[/youtube] code.. $patterns[] = "#\[youtube\]http://(?:www\.)?youtube.com/watch\?v=([0-9A-Za-z-_]{11})[^[]*\[/youtube\]#is"; ! $replacements[] = $bbcode_tpl['youtube']; ! //Stop more bbcode *************** *** 334,338 **** //Stop more bbcode ! // Remove our padding from the string.. return substr($text, 1);; --- 334,338 ---- //Stop more bbcode ! // Remove our padding from the string.. return substr($text, 1);; *************** *** 733,737 **** if ((PORTAL_BACKEND !== 'phpbb3') && !function_exists('bbencode_second_pass')) { ! mx_page::load_file('bbcode'); } --- 733,737 ---- if ((PORTAL_BACKEND !== 'phpbb3') && !function_exists('bbencode_second_pass')) { ! mx_cache::load_file('bbcode'); } *************** *** 741,745 **** if (!class_exists('bbcode')) { ! mx_page::load_file('bbcode', 'phpbb3'); } --- 741,745 ---- if (!class_exists('bbcode')) { ! mx_cache::load_file('bbcode', 'phpbb3'); } *************** *** 782,803 **** case 'internal': $smiley_path_url = PHPBB_URL; //change this to PORTAL_URL when shared folder will be removed ! $smiley_root_path = $phpbb_root_path; //same here $smiley_url = 'smile_url'; $smiley_id = 'smilies_id'; ! $emotion = 'emoticon'; break; case 'phpbb2': $smiley_path_url = PHPBB_URL; ! $smiley_root_path = $phpbb_root_path; $smiley_url = 'smile_url'; $smiley_id = 'smilies_id'; ! $emotion = 'emoticon'; break; case 'phpbb3': $smiley_path_url = PHPBB_URL; ! $smiley_root_path = $phpbb_root_path; $smiley_url = 'smiley_url'; $smiley_id = 'smiley_id'; ! $emotion = 'emotion'; $board_config['smilies_path'] = str_replace("smiles", "smilies", $board_config['smilies_path']); break; --- 782,803 ---- case 'internal': $smiley_path_url = PHPBB_URL; //change this to PORTAL_URL when shared folder will be removed ! $smiley_root_path = $phpbb_root_path; //same here $smiley_url = 'smile_url'; $smiley_id = 'smilies_id'; ! $emotion = 'emoticon'; break; case 'phpbb2': $smiley_path_url = PHPBB_URL; ! $smiley_root_path = $phpbb_root_path; $smiley_url = 'smile_url'; $smiley_id = 'smilies_id'; ! $emotion = 'emoticon'; break; case 'phpbb3': $smiley_path_url = PHPBB_URL; ! $smiley_root_path = $phpbb_root_path; $smiley_url = 'smiley_url'; $smiley_id = 'smiley_id'; ! $emotion = 'emotion'; $board_config['smilies_path'] = str_replace("smiles", "smilies", $board_config['smilies_path']); break; *************** *** 857,866 **** if( !function_exists('generate_smilies') ) { ! mx_page::load_file('functions_post', 'phpbb2'); } if( !function_exists('smilies_pass') && (PORTAL_BACKEND == 'phpbb2') ) { ! mx_page::load_file('bbcode', 'phpbb2'); } --- 857,866 ---- if( !function_exists('generate_smilies') ) { ! mx_cache::load_file('functions_post', 'phpbb2'); } if( !function_exists('smilies_pass') && (PORTAL_BACKEND == 'phpbb2') ) { ! mx_cache::load_file('bbcode', 'phpbb2'); } |
|
From: Jon O. <jon...@us...> - 2008-07-10 22:58:29
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv20224 Modified Files: mx_functions_tools.php Log Message: moving PORTAL_BACKEND from Core Index: mx_functions_tools.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_tools.php,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** mx_functions_tools.php 6 Jul 2008 22:10:01 -0000 1.35 --- mx_functions_tools.php 10 Jul 2008 22:58:26 -0000 1.36 *************** *** 15,28 **** } - // - // This 'include' is needed for the mx_text class - // - /* - if ((PORTAL_BACKEND !== 'phpbb3') && !function_exists('bbencode_second_pass')) - { - mx_page::load_file('bbcode'); - } - */ - /** * Class: mx_text. --- 15,18 ---- *************** *** 3828,3835 **** $ranksrow = array(); ! if ($portal_config['portal_backend'] != 'internal') ! { ! $this->obtain_ranks( $ranksrow ); ! } while ( $this->comments_row = $db->sql_fetchrow( $result ) ) --- 3818,3822 ---- $ranksrow = array(); ! $this->obtain_ranks( $ranksrow ); while ( $this->comments_row = $db->sql_fetchrow( $result ) ) *************** *** 4054,4061 **** $ranksrow = array(); ! if ($portal_config['portal_backend'] != 'internal') ! { ! $this->obtain_ranks( $ranksrow ); ! } while ( $this->comments_row = $db->sql_fetchrow( $result ) ) --- 4041,4045 ---- $ranksrow = array(); ! $this->obtain_ranks( $ranksrow ); while ( $this->comments_row = $db->sql_fetchrow( $result ) ) |
|
From: Jon O. <jon...@us...> - 2008-07-10 22:54:49
|
Update of /cvsroot/mxbb/mx_pafiledb/pafiledb/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv18528 Modified Files: functions_comment.php Log Message: moving PORTAL_BACKEND from Core Index: functions_comment.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/includes/functions_comment.php,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** functions_comment.php 1 Jul 2008 21:50:32 -0000 1.29 --- functions_comment.php 10 Jul 2008 22:54:46 -0000 1.30 *************** *** 129,155 **** global $db, $pafiledb_cache; ! if ( $pafiledb_cache->exists( 'ranks' ) ) ! { ! $ranks = $pafiledb_cache->get( 'ranks' ); ! } ! else { ! $sql = "SELECT * ! FROM " . RANKS_TABLE . " ! ORDER BY rank_special, rank_min"; ! ! if ( !( $result = $db->sql_query( $sql ) ) ) { ! mx_message_die( GENERAL_ERROR, "Could not obtain ranks information.", '', __LINE__, __FILE__, $sql ); } ! ! $ranks = array(); ! while ( $row = $db->sql_fetchrow( $result ) ) { ! $ranks[] = $row; ! } ! $db->sql_freeresult( $result ); ! $pafiledb_cache->put( 'ranks', $ranks ); } } --- 129,158 ---- global $db, $pafiledb_cache; ! if (PORTAL_BACKEND != 'internal') { ! if ( $pafiledb_cache->exists( 'ranks' ) ) { ! $ranks = $pafiledb_cache->get( 'ranks' ); } ! else { ! $sql = "SELECT * ! FROM " . RANKS_TABLE . " ! ORDER BY rank_special, rank_min"; ! if ( !( $result = $db->sql_query( $sql ) ) ) ! { ! mx_message_die( GENERAL_ERROR, "Could not obtain ranks information.", '', __LINE__, __FILE__, $sql ); ! } ! ! $ranks = array(); ! while ( $row = $db->sql_fetchrow( $result ) ) ! { ! $ranks[] = $row; ! } ! ! $db->sql_freeresult( $result ); ! $pafiledb_cache->put( 'ranks', $ranks ); ! } } } |
|
From: Jon O. <jon...@us...> - 2008-07-10 22:54:31
|
Update of /cvsroot/mxbb/mx_news/mx_news/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv18514 Modified Files: functions_comment.php Log Message: moving PORTAL_BACKEND from Core Index: functions_comment.php =================================================================== RCS file: /cvsroot/mxbb/mx_news/mx_news/includes/functions_comment.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** functions_comment.php 1 Jul 2008 21:49:56 -0000 1.6 --- functions_comment.php 10 Jul 2008 22:54:28 -0000 1.7 *************** *** 119,145 **** global $db, $mx_news_cache; ! if ( $mx_news_cache->exists( 'ranks' ) ) ! { ! $ranks = $mx_news_cache->get( 'ranks' ); ! } ! else { ! $sql = "SELECT * ! FROM " . RANKS_TABLE . " ! ORDER BY rank_special, rank_min"; ! ! if ( !( $result = $db->sql_query( $sql ) ) ) { ! mx_message_die( GENERAL_ERROR, "Could not obtain ranks information.", '', __LINE__, __FILE__, $sql ); } ! ! $ranks = array(); ! while ( $row = $db->sql_fetchrow( $result ) ) { ! $ranks[] = $row; ! } ! $db->sql_freeresult( $result ); ! $mx_news_cache->put( 'ranks', $ranks ); } } --- 119,148 ---- global $db, $mx_news_cache; ! if (PORTAL_BACKEND != 'internal') { ! if ( $mx_news_cache->exists( 'ranks' ) ) { ! $ranks = $mx_news_cache->get( 'ranks' ); } ! else { ! $sql = "SELECT * ! FROM " . RANKS_TABLE . " ! ORDER BY rank_special, rank_min"; ! if ( !( $result = $db->sql_query( $sql ) ) ) ! { ! mx_message_die( GENERAL_ERROR, "Could not obtain ranks information.", '', __LINE__, __FILE__, $sql ); ! } ! ! $ranks = array(); ! while ( $row = $db->sql_fetchrow( $result ) ) ! { ! $ranks[] = $row; ! } ! ! $db->sql_freeresult( $result ); ! $mx_news_cache->put( 'ranks', $ranks ); ! } } } |
|
From: Jon O. <jon...@us...> - 2008-07-10 22:54:11
|
Update of /cvsroot/mxbb/mx_linkdb/linkdb/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv18467 Modified Files: functions_comment.php Log Message: moving PORTAL_BACKEND from Core Index: functions_comment.php =================================================================== RCS file: /cvsroot/mxbb/mx_linkdb/linkdb/includes/functions_comment.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** functions_comment.php 1 Jul 2008 21:50:04 -0000 1.8 --- functions_comment.php 10 Jul 2008 22:54:08 -0000 1.9 *************** *** 129,155 **** global $db, $linkdb_cache; ! if ( $linkdb_cache->exists( 'ranks' ) ) ! { ! $ranks = $linkdb_cache->get( 'ranks' ); ! } ! else { ! $sql = "SELECT * ! FROM " . RANKS_TABLE . " ! ORDER BY rank_special, rank_min"; ! ! if ( !( $result = $db->sql_query( $sql ) ) ) { ! mx_message_die( GENERAL_ERROR, "Could not obtain ranks information.", '', __LINE__, __FILE__, $sql ); } ! ! $ranks = array(); ! while ( $row = $db->sql_fetchrow( $result ) ) { ! $ranks[] = $row; ! } ! $db->sql_freeresult( $result ); ! $linkdb_cache->put( 'ranks', $ranks ); } } --- 129,158 ---- global $db, $linkdb_cache; ! if (PORTAL_BACKEND != 'internal') { ! if ( $linkdb_cache->exists( 'ranks' ) ) { ! $ranks = $linkdb_cache->get( 'ranks' ); } ! else { ! $sql = "SELECT * ! FROM " . RANKS_TABLE . " ! ORDER BY rank_special, rank_min"; ! if ( !( $result = $db->sql_query( $sql ) ) ) ! { ! mx_message_die( GENERAL_ERROR, "Could not obtain ranks information.", '', __LINE__, __FILE__, $sql ); ! } ! ! $ranks = array(); ! while ( $row = $db->sql_fetchrow( $result ) ) ! { ! $ranks[] = $row; ! } ! ! $db->sql_freeresult( $result ); ! $linkdb_cache->put( 'ranks', $ranks ); ! } } } |
|
From: Jon O. <jon...@us...> - 2008-07-10 22:53:56
|
Update of /cvsroot/mxbb/mx_kb/kb/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv18080 Modified Files: functions_comment.php Log Message: moving PORTAL_BACKEND from Core Index: functions_comment.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/kb/includes/functions_comment.php,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** functions_comment.php 1 Jul 2008 21:49:21 -0000 1.14 --- functions_comment.php 10 Jul 2008 22:53:53 -0000 1.15 *************** *** 128,154 **** global $db, $mx_kb_cache; ! if ( $mx_kb_cache->exists( 'ranks' ) ) ! { ! $ranks = $mx_kb_cache->get( 'ranks' ); ! } ! else { ! $sql = "SELECT * ! FROM " . RANKS_TABLE . " ! ORDER BY rank_special, rank_min"; ! ! if ( !( $result = $db->sql_query( $sql ) ) ) { ! mx_message_die( GENERAL_ERROR, "Could not obtain ranks information.", '', __LINE__, __FILE__, $sql ); } ! ! $ranks = array(); ! while ( $row = $db->sql_fetchrow( $result ) ) { ! $ranks[] = $row; ! } ! $db->sql_freeresult( $result ); ! $mx_kb_cache->put( 'ranks', $ranks ); } } --- 128,157 ---- global $db, $mx_kb_cache; ! if (PORTAL_BACKEND != 'internal') { ! if ( $mx_kb_cache->exists( 'ranks' ) ) { ! $ranks = $mx_kb_cache->get( 'ranks' ); } ! else { ! $sql = "SELECT * ! FROM " . RANKS_TABLE . " ! ORDER BY rank_special, rank_min"; ! if ( !( $result = $db->sql_query( $sql ) ) ) ! { ! mx_message_die( GENERAL_ERROR, "Could not obtain ranks information.", '', __LINE__, __FILE__, $sql ); ! } ! ! $ranks = array(); ! while ( $row = $db->sql_fetchrow( $result ) ) ! { ! $ranks[] = $row; ! } ! ! $db->sql_freeresult( $result ); ! $mx_kb_cache->put( 'ranks', $ranks ); ! } } } |
|
From: Jon O. <jon...@us...> - 2008-07-10 22:53:31
|
Update of /cvsroot/mxbb/mx_bugsbt/bugsbt/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv18056 Modified Files: functions_comment.php Log Message: moving PORTAL_BACKEND from Core Index: functions_comment.php =================================================================== RCS file: /cvsroot/mxbb/mx_bugsbt/bugsbt/includes/functions_comment.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** functions_comment.php 8 Jul 2008 22:07:05 -0000 1.7 --- functions_comment.php 10 Jul 2008 22:53:28 -0000 1.8 *************** *** 175,201 **** global $db, $mx_bugsbt_cache; ! if ( $mx_bugsbt_cache->exists( 'ranks' ) ) ! { ! $ranks = $mx_bugsbt_cache->get( 'ranks' ); ! } ! else { ! $sql = "SELECT * ! FROM " . RANKS_TABLE . " ! ORDER BY rank_special, rank_min"; ! ! if ( !( $result = $db->sql_query( $sql ) ) ) { ! mx_message_die( GENERAL_ERROR, "Could not obtain ranks information.", '', __LINE__, __FILE__, $sql ); } ! ! $ranks = array(); ! while ( $row = $db->sql_fetchrow( $result ) ) { ! $ranks[] = $row; ! } ! $db->sql_freeresult( $result ); ! $mx_bugsbt_cache->put( 'ranks', $ranks ); } } --- 175,204 ---- global $db, $mx_bugsbt_cache; ! if (PORTAL_BACKEND != 'internal') { ! if ( $mx_bugsbt_cache->exists( 'ranks' ) ) { ! $ranks = $mx_bugsbt_cache->get( 'ranks' ); } ! else { ! $sql = "SELECT * ! FROM " . RANKS_TABLE . " ! ORDER BY rank_special, rank_min"; ! if ( !( $result = $db->sql_query( $sql ) ) ) ! { ! mx_message_die( GENERAL_ERROR, "Could not obtain ranks information.", '', __LINE__, __FILE__, $sql ); ! } ! ! $ranks = array(); ! while ( $row = $db->sql_fetchrow( $result ) ) ! { ! $ranks[] = $row; ! } ! ! $db->sql_freeresult( $result ); ! $mx_bugsbt_cache->put( 'ranks', $ranks ); ! } } } |
|
From: Jon O. <jon...@us...> - 2008-07-10 22:30:26
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv6702 Modified Files: Tag: core28x mx_functions_core.php Log Message: Typho Index: mx_functions_core.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_core.php,v retrieving revision 1.52.2.16 retrieving revision 1.52.2.17 diff -C2 -d -r1.52.2.16 -r1.52.2.17 *** mx_functions_core.php 10 Jul 2008 22:27:23 -0000 1.52.2.16 --- mx_functions_core.php 10 Jul 2008 22:30:20 -0000 1.52.2.17 *************** *** 140,146 **** * Examples * ! * mx_page::load_file('functions_post'), will include the phpbb version of the file ! * mx_page::load_file('functions_post', true), will include the shared phpbb version of the file ! * mx_page::load_file('functions_post', 'phpbb2'), will include the shared phpbb2 version of the file, even though we are running in internal/phpbb3 mode * * @param unknown_type $file --- 140,146 ---- * Examples * ! * mx_cache::load_file('functions_post'), will include the phpbb version of the file ! * mx_cache::load_file('functions_post', true), will include the shared phpbb version of the file ! * mx_cache::load_file('functions_post', 'phpbb2'), will include the shared phpbb2 version of the file, even though we are running in internal/phpbb3 mode * * @param unknown_type $file |
|
From: Jon O. <jon...@us...> - 2008-07-10 22:27:50
|
Update of /cvsroot/mxbb/core/templates/subSilver/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv4771 Modified Files: Tag: core28x mx_modulecp_admin_body.tpl mx_pagecp_admin_body.tpl Log Message: Moving load_file to mx_cache... Index: mx_modulecp_admin_body.tpl =================================================================== RCS file: /cvsroot/mxbb/core/templates/subSilver/admin/Attic/mx_modulecp_admin_body.tpl,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -C2 -d -r1.5 -r1.5.2.1 *** mx_modulecp_admin_body.tpl 28 Jun 2006 22:51:44 -0000 1.5 --- mx_modulecp_admin_body.tpl 10 Jul 2008 22:27:43 -0000 1.5.2.1 *************** *** 230,234 **** return false; } else { ! bbstyle(-1); //formObj.preview.disabled = true; //formObj.submit.disabled = true; --- 230,236 ---- return false; } else { ! if(bbstyle){ ! bbstyle(-1); ! } //formObj.preview.disabled = true; //formObj.submit.disabled = true; Index: mx_pagecp_admin_body.tpl =================================================================== RCS file: /cvsroot/mxbb/core/templates/subSilver/admin/Attic/mx_pagecp_admin_body.tpl,v retrieving revision 1.14 retrieving revision 1.14.2.1 diff -C2 -d -r1.14 -r1.14.2.1 *** mx_pagecp_admin_body.tpl 21 Jul 2007 23:09:47 -0000 1.14 --- mx_pagecp_admin_body.tpl 10 Jul 2008 22:27:45 -0000 1.14.2.1 *************** *** 253,257 **** return false; } else { ! bbstyle(-1); //formObj.preview.disabled = true; //formObj.submit.disabled = true; --- 253,259 ---- return false; } else { ! if(bbstyle){ ! bbstyle(-1); ! } //formObj.preview.disabled = true; //formObj.submit.disabled = true; |
|
From: Jon O. <jon...@us...> - 2008-07-10 22:27:28
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv4580 Modified Files: Tag: core28x mx_functions_core.php Log Message: Moving load_file to mx_cache... Index: mx_functions_core.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_core.php,v retrieving revision 1.52.2.15 retrieving revision 1.52.2.16 diff -C2 -d -r1.52.2.15 -r1.52.2.16 *** mx_functions_core.php 15 Jun 2008 21:02:29 -0000 1.52.2.15 --- mx_functions_core.php 10 Jul 2008 22:27:23 -0000 1.52.2.16 *************** *** 131,134 **** --- 131,186 ---- /** + * Load file. + * + * Load additional functions/classes. + * + * The $force_shared parameter will ensure we include the mxp shared version of the file. + * If you need to include a shared version from a different backend, pass this info. + * + * Examples + * + * mx_page::load_file('functions_post'), will include the phpbb version of the file + * mx_page::load_file('functions_post', true), will include the shared phpbb version of the file + * mx_page::load_file('functions_post', 'phpbb2'), will include the shared phpbb2 version of the file, even though we are running in internal/phpbb3 mode + * + * @param unknown_type $file + * @param unknown_type $backend + * @param unknown_type $force_shared + */ + function load_file($file = '', $force_shared = false) + { + global $mx_root_path, $phpbb_root_path, $phpEx; + + /* + $path = PORTAL_BACKEND == 'internal' || $force_shared ? $mx_root_path . 'includes/shared/' . PORTAL_BACKEND . '/includes/' : $phpbb_root_path . 'includes/'; + + if (file_exists($path . $file.'.'.$phpEx)) + { + @include_once($path . $file.'.'.$phpEx); + } + */ + if (PORTAL_BACKEND == 'internal' || $force_shared) + { + $backend = in_array($force_shared, array('internal', 'phpbb2', 'phpbb3')) ? $force_shared : PORTAL_BACKEND; + switch ($backend) + { + case 'internal': + case 'phpbb2': + $path = $mx_root_path . 'includes/shared/phpbb2/includes/'; + break; + } + } + else + { + $path = $phpbb_root_path . 'includes/'; + } + + if (file_exists($path . $file.'.'.$phpEx)) + { + @include_once($path . $file.'.'.$phpEx); + } + } + + /** * Read. * *************** *** 3068,3123 **** /** - * Load file. - * - * Load additional functions/classes. - * - * The $force_shared parameter will ensure we include the mxp shared version of the file. - * If you need to include a shared version from a different backend, pass this info. - * - * Examples - * - * mx_page::load_file('functions_post'), will include the phpbb version of the file - * mx_page::load_file('functions_post', true), will include the shared phpbb version of the file - * mx_page::load_file('functions_post', 'phpbb2'), will include the shared phpbb2 version of the file, even though we are running in internal/phpbb3 mode - * - * @param unknown_type $file - * @param unknown_type $backend - * @param unknown_type $force_shared - */ - function load_file($file = '', $force_shared = false) - { - global $mx_root_path, $phpbb_root_path, $phpEx; - - /* - $path = PORTAL_BACKEND == 'internal' || $force_shared ? $mx_root_path . 'includes/shared/' . PORTAL_BACKEND . '/includes/' : $phpbb_root_path . 'includes/'; - - if (file_exists($path . $file.'.'.$phpEx)) - { - @include_once($path . $file.'.'.$phpEx); - } - */ - if (PORTAL_BACKEND == 'internal' || $force_shared) - { - $backend = in_array($force_shared, array('internal', 'phpbb2', 'phpbb3')) ? $force_shared : PORTAL_BACKEND; - switch ($backend) - { - case 'internal': - case 'phpbb2': - $path = $mx_root_path . 'includes/shared/phpbb2/includes/'; - break; - } - } - else - { - $path = $phpbb_root_path . 'includes/'; - } - - if (file_exists($path . $file.'.'.$phpEx)) - { - @include_once($path . $file.'.'.$phpEx); - } - } - - /** * editcp_exists. * --- 3120,3123 ---- |
|
From: Jon O. <jon...@us...> - 2008-07-10 22:25:24
|
Update of /cvsroot/mxbb/mx_radiocast/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv2828 Modified Files: radiocast_modcp.php Log Message: Moving load_file to mx_cache... Index: radiocast_modcp.php =================================================================== RCS file: /cvsroot/mxbb/mx_radiocast/includes/radiocast_modcp.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** radiocast_modcp.php 6 Jun 2007 23:03:52 -0000 1.1 --- radiocast_modcp.php 10 Jul 2008 22:25:20 -0000 1.2 *************** *** 27,31 **** // Start session management // ! $mx_user->init($user_ip, PAGE_INDEX); // // End session management --- 27,31 ---- // Start session management // ! $mx_user->init($user_ip, PAGE_INDEX); // // End session management *************** *** 313,317 **** $total_stations = $row['count']; ! $stations_per_page = $board_config['topics_per_page']; // Text list only // get information from DB --- 313,317 ---- $total_stations = $row['count']; ! $stations_per_page = isset($board_config['topics_per_page']) ? $board_config['topics_per_page'] : 15; // Text list only // get information from DB |
|
From: Jon O. <jon...@us...> - 2008-07-10 22:24:49
|
Update of /cvsroot/mxbb/mx_import_tools/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv2313 Modified Files: functions_mod_user.php Log Message: Moving load_file to mx_cache... Index: functions_mod_user.php =================================================================== RCS file: /cvsroot/mxbb/mx_import_tools/includes/functions_mod_user.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** functions_mod_user.php 22 Feb 2008 23:09:09 -0000 1.9 --- functions_mod_user.php 10 Jul 2008 22:24:40 -0000 1.10 *************** *** 17,31 **** if( !function_exists('validate_username') ) { ! mx_page::load_file('functions_validate'); } if( !function_exists('prepare_message') ) { ! mx_page::load_file('functions_post'); } if( !function_exists('make_bbcode_uid') ) { ! mx_page::load_file('bbcode'); } --- 17,31 ---- if( !function_exists('validate_username') ) { ! mx_cache::load_file('functions_validate'); } if( !function_exists('prepare_message') ) { ! mx_cache::load_file('functions_post'); } if( !function_exists('make_bbcode_uid') ) { ! mx_cache::load_file('bbcode'); } |
|
From: Jon O. <jon...@us...> - 2008-07-10 22:23:54
|
Update of /cvsroot/mxbb/mx_smartor/album_mod/modules In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv1769 Modified Files: album_modcp.php album_personal_index.php Log Message: Moving load_file to mx_cache... Index: album_modcp.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/album_mod/modules/album_modcp.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** album_modcp.php 13 Mar 2008 08:35:56 -0000 1.3 --- album_modcp.php 10 Jul 2008 22:23:51 -0000 1.4 *************** *** 301,305 **** $total_pics = $row['count']; ! $pics_per_page = $board_config['topics_per_page']; // Text list only // get information from DB --- 301,305 ---- $total_pics = $row['count']; ! $pics_per_page = (isset($board_config['topics_per_page']) ? $board_config['topics_per_page'] : 15); // Text list only // get information from DB Index: album_personal_index.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/album_mod/modules/album_personal_index.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** album_personal_index.php 13 Mar 2008 08:35:57 -0000 1.3 --- album_personal_index.php 10 Jul 2008 22:23:51 -0000 1.4 *************** *** 100,116 **** { case 'joined': ! $order_by = "user_regdate ASC LIMIT $start, " . $board_config['topics_per_page']; break; case 'username': ! $order_by = "username $sort_order LIMIT $start, " . $board_config['topics_per_page']; break; case 'pics': ! $order_by = "pics $sort_order LIMIT $start, " . $board_config['topics_per_page']; break; case 'last_pic': ! $order_by = "last_pic $sort_order LIMIT $start, " . $board_config['topics_per_page']; break; default: ! $order_by = "user_regdate $sort_order LIMIT $start, " . $board_config['topics_per_page']; break; } --- 100,116 ---- { case 'joined': ! $order_by = "user_regdate ASC LIMIT $start, " . (isset($board_config['topics_per_page']) ? $board_config['topics_per_page'] : 15); break; case 'username': ! $order_by = "username $sort_order LIMIT $start, " . (isset($board_config['topics_per_page']) ? $board_config['topics_per_page'] : 15); break; case 'pics': ! $order_by = "pics $sort_order LIMIT $start, " . (isset($board_config['topics_per_page']) ? $board_config['topics_per_page'] : 15); break; case 'last_pic': ! $order_by = "last_pic $sort_order LIMIT $start, " . (isset($board_config['topics_per_page']) ? $board_config['topics_per_page'] : 15); break; default: ! $order_by = "user_regdate $sort_order LIMIT $start, " . (isset($board_config['topics_per_page']) ? $board_config['topics_per_page'] : 15); break; } *************** *** 162,171 **** $total_galleries = $total['total']; ! $pagination = mx_generate_pagination(this_smartor_mxurl("smartor_mode=album_personal_index&mode=$mode&order=$sort_order"), $total_galleries, $board_config['topics_per_page'], $start). ' '; } $template->assign_vars(array( 'PAGINATION' => $pagination, ! 'PAGE_NUMBER' => sprintf($lang['Page_of'], ( floor( $start / $board_config['topics_per_page'] ) + 1 ), ceil( $total_galleries / $board_config['topics_per_page'] )) ) ); --- 162,171 ---- $total_galleries = $total['total']; ! $pagination = mx_generate_pagination(this_smartor_mxurl("smartor_mode=album_personal_index&mode=$mode&order=$sort_order"), $total_galleries, (isset($board_config['topics_per_page']) ? $board_config['topics_per_page'] : 15), $start). ' '; } $template->assign_vars(array( 'PAGINATION' => $pagination, ! 'PAGE_NUMBER' => sprintf($lang['Page_of'], ( floor( $start / (isset($board_config['topics_per_page']) ? $board_config['topics_per_page'] : 15) ) + 1 ), ceil( $total_galleries / (isset($board_config['topics_per_page']) ? $board_config['topics_per_page'] : 15) )) ) ); |
|
From: Jon O. <jon...@us...> - 2008-07-10 22:23:32
|
Update of /cvsroot/mxbb/mx_pafiledb/pafiledb/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv1645/pafiledb/admin Modified Files: admin_cat_manage.php admin_catauth_manage.php admin_custom_manage.php admin_fchecker_manage.php admin_license_manage.php admin_settings.php admin_ug_auth_manage.php Log Message: Moving load_file to mx_cache... Index: admin_cat_manage.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/admin/admin_cat_manage.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** admin_cat_manage.php 15 Jun 2008 21:05:04 -0000 1.7 --- admin_cat_manage.php 10 Jul 2008 22:23:26 -0000 1.8 *************** *** 23,28 **** // Includes // ! mx_page::load_file('functions_search', 'phpbb2'); ! //include_once( $phpbb_root_path . 'includes/functions_search.' . $phpEx ); $mode = ( isset( $_REQUEST['mode'] ) ) ? htmlspecialchars( $_REQUEST['mode'] ) : ''; --- 23,27 ---- // Includes // ! mx_cache::load_file('functions_search', 'phpbb2'); $mode = ( isset( $_REQUEST['mode'] ) ) ? htmlspecialchars( $_REQUEST['mode'] ) : ''; Index: admin_settings.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/admin/admin_settings.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** admin_settings.php 15 Jun 2008 21:05:05 -0000 1.8 --- admin_settings.php 10 Jul 2008 22:23:27 -0000 1.9 *************** *** 23,28 **** // Includes // ! mx_page::load_file('functions_search', 'phpbb2'); ! //include_once( $phpbb_root_path . 'includes/functions_search.' . $phpEx ); $submit = ( isset( $_POST['submit'] ) ) ? true : false; --- 23,27 ---- // Includes // ! mx_cache::load_file('functions_search', 'phpbb2'); $submit = ( isset( $_POST['submit'] ) ) ? true : false; Index: admin_ug_auth_manage.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/admin/admin_ug_auth_manage.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** admin_ug_auth_manage.php 15 Jun 2008 21:05:05 -0000 1.7 --- admin_ug_auth_manage.php 10 Jul 2008 22:23:27 -0000 1.8 *************** *** 25,30 **** // Includes // ! mx_page::load_file('functions_search', 'phpbb2'); ! //include_once( $phpbb_root_path . 'includes/functions_search.' . $phpEx ); $params = array( 'mode' => 'mode', 'user_id' => POST_USERS_URL, 'group_id' => POST_GROUPS_URL ); --- 25,29 ---- // Includes // ! mx_cache::load_file('functions_search', 'phpbb2'); $params = array( 'mode' => 'mode', 'user_id' => POST_USERS_URL, 'group_id' => POST_GROUPS_URL ); Index: admin_custom_manage.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/admin/admin_custom_manage.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** admin_custom_manage.php 15 Jun 2008 21:05:05 -0000 1.7 --- admin_custom_manage.php 10 Jul 2008 22:23:26 -0000 1.8 *************** *** 23,28 **** // Includes // ! mx_page::load_file('functions_search', 'phpbb2'); ! //include_once( $phpbb_root_path . 'includes/functions_search.' . $phpEx ); // --- 23,27 ---- // Includes // ! mx_cache::load_file('functions_search', 'phpbb2'); // Index: admin_fchecker_manage.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/admin/admin_fchecker_manage.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** admin_fchecker_manage.php 15 Jun 2008 21:05:05 -0000 1.5 --- admin_fchecker_manage.php 10 Jul 2008 22:23:27 -0000 1.6 *************** *** 23,28 **** // Includes // ! mx_page::load_file('functions_search', 'phpbb2'); ! //include_once( $phpbb_root_path . 'includes/functions_search.' . $phpEx ); $this_dir = $module_root_path . 'pafiledb/uploads/'; --- 23,27 ---- // Includes // ! mx_cache::load_file('functions_search', 'phpbb2'); $this_dir = $module_root_path . 'pafiledb/uploads/'; Index: admin_catauth_manage.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/admin/admin_catauth_manage.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** admin_catauth_manage.php 15 Jun 2008 21:05:04 -0000 1.7 --- admin_catauth_manage.php 10 Jul 2008 22:23:26 -0000 1.8 *************** *** 25,30 **** // Includes // ! mx_page::load_file('functions_search', 'phpbb2'); ! //include_once( $phpbb_root_path . 'includes/functions_search.' . $phpEx ); $custom_auth_approval = array(); --- 25,29 ---- // Includes // ! mx_cache::load_file('functions_search', 'phpbb2'); $custom_auth_approval = array(); Index: admin_license_manage.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/admin/admin_license_manage.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** admin_license_manage.php 15 Jun 2008 21:05:05 -0000 1.6 --- admin_license_manage.php 10 Jul 2008 22:23:27 -0000 1.7 *************** *** 23,28 **** // Includes // ! mx_page::load_file('functions_search', 'phpbb2'); ! //include_once( $phpbb_root_path . 'includes/functions_search.' . $phpEx ); if ( isset( $_GET['license'] ) || isset( $_POST['license'] ) ) --- 23,27 ---- // Includes // ! mx_cache::load_file('functions_search', 'phpbb2'); if ( isset( $_GET['license'] ) || isset( $_POST['license'] ) ) |
|
From: Jon O. <jon...@us...> - 2008-07-10 22:23:31
|
Update of /cvsroot/mxbb/mx_pafiledb/pafiledb/modules In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv1645/pafiledb/modules Modified Files: pa_search.php Log Message: Moving load_file to mx_cache... Index: pa_search.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/modules/pa_search.php,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** pa_search.php 15 Jun 2008 21:05:05 -0000 1.25 --- pa_search.php 10 Jul 2008 22:23:27 -0000 1.26 *************** *** 42,47 **** } ! mx_page::load_file('functions_search', 'phpbb2'); ! //include_once( $phpbb_root_path . 'includes/functions_search.' . $phpEx ); if ( isset( $_REQUEST['search_keywords'] ) ) --- 42,46 ---- } ! mx_cache::load_file('functions_search', 'phpbb2'); if ( isset( $_REQUEST['search_keywords'] ) ) |
|
From: Jon O. <jon...@us...> - 2008-07-10 22:23:30
|
Update of /cvsroot/mxbb/mx_pafiledb In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv1645 Modified Files: dload.php Log Message: Moving load_file to mx_cache... Index: dload.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/dload.php,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** dload.php 15 Jun 2008 21:05:04 -0000 1.30 --- dload.php 10 Jul 2008 22:23:26 -0000 1.31 *************** *** 60,67 **** $tplEx = 'tpl'; ! mx_page::load_file('bbcode', 'phpbb2'); ! //include_once( $phpbb_root_path . 'includes/bbcode.' . $phpEx ); ! mx_page::load_file('functions_post', 'phpbb2'); ! //include_once( $phpbb_root_path . 'includes/functions_post.' . $phpEx ); // Start session management --- 60,65 ---- $tplEx = 'tpl'; ! mx_cache::load_file('bbcode', 'phpbb2'); ! mx_cache::load_file('functions_post', 'phpbb2'); // Start session management |
|
From: Jon O. <jon...@us...> - 2008-07-10 22:23:11
|
Update of /cvsroot/mxbb/mx_news In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv1491 Modified Files: mx_news.php mx_news_list.php Log Message: Moving load_file to mx_cache... Index: mx_news_list.php =================================================================== RCS file: /cvsroot/mxbb/mx_news/mx_news_list.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** mx_news_list.php 22 Jun 2008 19:12:20 -0000 1.5 --- mx_news_list.php 10 Jul 2008 22:23:06 -0000 1.6 *************** *** 60,67 **** $tplEx = 'tpl'; ! mx_page::load_file('bbcode', 'phpbb2'); ! //include_once( $phpbb_root_path . 'includes/bbcode.' . $phpEx ); ! mx_page::load_file('functions_post', 'phpbb2'); ! //include_once( $phpbb_root_path . 'includes/functions_post.' . $phpEx ); // Start session management --- 60,65 ---- $tplEx = 'tpl'; ! mx_cache::load_file('bbcode', 'phpbb2'); ! mx_cache::load_file('functions_post', 'phpbb2'); // Start session management Index: mx_news.php =================================================================== RCS file: /cvsroot/mxbb/mx_news/mx_news.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** mx_news.php 15 Jun 2008 21:04:40 -0000 1.6 --- mx_news.php 10 Jul 2008 22:23:06 -0000 1.7 *************** *** 60,67 **** $tplEx = 'tpl'; ! mx_page::load_file('bbcode', 'phpbb2'); ! //include_once( $phpbb_root_path . 'includes/bbcode.' . $phpEx ); ! mx_page::load_file('functions_post', 'phpbb2'); ! //include_once( $phpbb_root_path . 'includes/functions_post.' . $phpEx ); // Start session management --- 60,65 ---- $tplEx = 'tpl'; ! mx_cache::load_file('bbcode', 'phpbb2'); ! mx_cache::load_file('functions_post', 'phpbb2'); // Start session management |
|
From: Jon O. <jon...@us...> - 2008-07-10 22:22:48
|
Update of /cvsroot/mxbb/mx_music/music_box/modules In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv1121 Modified Files: music_modcp.php Log Message: Moving load_file to mx_cache... Index: music_modcp.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/music_box/modules/music_modcp.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** music_modcp.php 29 Jan 2008 07:51:05 -0000 1.2 --- music_modcp.php 10 Jul 2008 22:22:43 -0000 1.3 *************** *** 291,295 **** $total_songs = $row['count']; ! $songs_per_page = $board_config['topics_per_page']; // Text list only // get information from DB --- 291,295 ---- $total_songs = $row['count']; ! $songs_per_page = isset($board_config['topics_per_page']) ? $board_config['topics_per_page'] : 15; // Text list only // get information from DB |
|
From: Jon O. <jon...@us...> - 2008-07-10 22:22:33
|
Update of /cvsroot/mxbb/mx_linkdb/linkdb/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv1050/linkdb/admin Modified Files: admin_auth_manage.php admin_custom_manage.php Log Message: Moving load_file to mx_cache... Index: admin_custom_manage.php =================================================================== RCS file: /cvsroot/mxbb/mx_linkdb/linkdb/admin/admin_custom_manage.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** admin_custom_manage.php 15 Jun 2008 21:04:21 -0000 1.5 --- admin_custom_manage.php 10 Jul 2008 22:22:29 -0000 1.6 *************** *** 23,28 **** // Includes // ! mx_page::load_file('functions_search', 'phpbb2'); ! //include_once( $phpbb_root_path . 'includes/functions_search.' . $phpEx ); $this_custom_field = new mx_custom_field(LINK_CUSTOM_TABLE, LINK_CUSTOM_DATA_TABLE); --- 23,27 ---- // Includes // ! mx_cache::load_file('functions_search', 'phpbb2'); $this_custom_field = new mx_custom_field(LINK_CUSTOM_TABLE, LINK_CUSTOM_DATA_TABLE); Index: admin_auth_manage.php =================================================================== RCS file: /cvsroot/mxbb/mx_linkdb/linkdb/admin/admin_auth_manage.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** admin_auth_manage.php 15 Jun 2008 21:04:21 -0000 1.9 --- admin_auth_manage.php 10 Jul 2008 22:22:28 -0000 1.10 *************** *** 23,28 **** // Includes // ! mx_page::load_file('functions_search', 'phpbb2'); ! //include( $phpbb_root_path . 'includes/functions_search.' . $phpEx ); // --- 23,27 ---- // Includes // ! mx_cache::load_file('functions_search', 'phpbb2'); // |
|
From: Jon O. <jon...@us...> - 2008-07-10 22:22:31
|
Update of /cvsroot/mxbb/mx_linkdb In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv1050 Modified Files: linkdb.php Log Message: Moving load_file to mx_cache... Index: linkdb.php =================================================================== RCS file: /cvsroot/mxbb/mx_linkdb/linkdb.php,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** linkdb.php 15 Jun 2008 21:04:20 -0000 1.18 --- linkdb.php 10 Jul 2008 22:22:28 -0000 1.19 *************** *** 60,67 **** $tplEx = 'tpl'; ! mx_page::load_file('bbcode', 'phpbb2'); ! //include_once( $phpbb_root_path . 'includes/bbcode.' . $phpEx ); ! mx_page::load_file('functions_post', 'phpbb2'); ! //include_once( $phpbb_root_path . 'includes/functions_post.' . $phpEx ); // Start session management --- 60,65 ---- $tplEx = 'tpl'; ! mx_cache::load_file('bbcode', 'phpbb2'); ! mx_cache::load_file('functions_post', 'phpbb2'); // Start session management |
|
From: Jon O. <jon...@us...> - 2008-07-10 22:22:25
|
Update of /cvsroot/mxbb/mx_kb/kb/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv906/kb/admin Modified Files: admin_auth_manage.php admin_cat_manage.php admin_custom_manage.php admin_settings.php admin_types_manage.php Log Message: Moving load_file to mx_cache... Index: admin_custom_manage.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/kb/admin/admin_custom_manage.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** admin_custom_manage.php 15 Jun 2008 21:04:08 -0000 1.6 --- admin_custom_manage.php 10 Jul 2008 22:22:18 -0000 1.7 *************** *** 23,28 **** // Includes // ! mx_page::load_file('functions_search', 'phpbb2'); ! //include_once( $phpbb_root_path . 'includes/functions_search.' . $phpEx ); $this_custom_field = new mx_custom_field(KB_CUSTOM_TABLE, KB_CUSTOM_DATA_TABLE); --- 23,27 ---- // Includes // ! mx_cache::load_file('functions_search', 'phpbb2'); $this_custom_field = new mx_custom_field(KB_CUSTOM_TABLE, KB_CUSTOM_DATA_TABLE); Index: admin_cat_manage.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/kb/admin/admin_cat_manage.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** admin_cat_manage.php 15 Jun 2008 21:04:08 -0000 1.8 --- admin_cat_manage.php 10 Jul 2008 22:22:18 -0000 1.9 *************** *** 23,28 **** // Includes // ! mx_page::load_file('functions_search', 'phpbb2'); ! //include_once( $phpbb_root_path . 'includes/functions_search.' . $phpEx ); $mode = $mx_request_vars->request('mode', MX_TYPE_NO_TAGS, ''); --- 23,27 ---- // Includes // ! mx_cache::load_file('functions_search', 'phpbb2'); $mode = $mx_request_vars->request('mode', MX_TYPE_NO_TAGS, ''); Index: admin_types_manage.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/kb/admin/admin_types_manage.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** admin_types_manage.php 15 Jun 2008 21:04:08 -0000 1.7 --- admin_types_manage.php 10 Jul 2008 22:22:19 -0000 1.8 *************** *** 23,28 **** // Includes // ! mx_page::load_file('functions_search', 'phpbb2'); ! //include_once( $phpbb_root_path . 'includes/functions_search.' . $phpEx ); // --- 23,27 ---- // Includes // ! mx_cache::load_file('functions_search', 'phpbb2'); // Index: admin_settings.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/kb/admin/admin_settings.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** admin_settings.php 15 Jun 2008 21:04:08 -0000 1.7 --- admin_settings.php 10 Jul 2008 22:22:19 -0000 1.8 *************** *** 23,28 **** // Includes // ! mx_page::load_file('functions_search', 'phpbb2'); ! //include_once( $phpbb_root_path . 'includes/functions_search.' . $phpEx ); // --- 23,27 ---- // Includes // ! mx_cache::load_file('functions_search', 'phpbb2'); // Index: admin_auth_manage.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/kb/admin/admin_auth_manage.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** admin_auth_manage.php 15 Jun 2008 21:04:07 -0000 1.7 --- admin_auth_manage.php 10 Jul 2008 22:22:18 -0000 1.8 *************** *** 23,28 **** // Includes // ! mx_page::load_file('functions_search', 'phpbb2'); ! //include_once( $phpbb_root_path . 'includes/functions_search.' . $phpEx ); // --- 23,27 ---- // Includes // ! mx_cache::load_file('functions_search', 'phpbb2'); // |
|
From: Jon O. <jon...@us...> - 2008-07-10 22:22:23
|
Update of /cvsroot/mxbb/mx_kb/kb/modules In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv906/kb/modules Modified Files: kb_search.php Log Message: Moving load_file to mx_cache... Index: kb_search.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/kb/modules/kb_search.php,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** kb_search.php 15 Jun 2008 21:04:08 -0000 1.13 --- kb_search.php 10 Jul 2008 22:22:19 -0000 1.14 *************** *** 30,35 **** global $phpbb_root_path, $userdata, $mx_root_path, $module_root_path, $is_block; ! mx_page::load_file('functions_search', 'phpbb2'); ! //include_once( $phpbb_root_path . 'includes/functions_search.' . $phpEx ); if ( isset( $_REQUEST['search_keywords'] ) ) --- 30,34 ---- global $phpbb_root_path, $userdata, $mx_root_path, $module_root_path, $is_block; ! mx_cache::load_file('functions_search', 'phpbb2'); if ( isset( $_REQUEST['search_keywords'] ) ) |
|
From: Jon O. <jon...@us...> - 2008-07-10 22:22:22
|
Update of /cvsroot/mxbb/mx_kb In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv906 Modified Files: kb.php Log Message: Moving load_file to mx_cache... Index: kb.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/kb.php,v retrieving revision 1.50 retrieving revision 1.51 diff -C2 -d -r1.50 -r1.51 *** kb.php 15 Jun 2008 21:04:07 -0000 1.50 --- kb.php 10 Jul 2008 22:22:17 -0000 1.51 *************** *** 59,66 **** $tplEx = 'tpl'; ! mx_page::load_file('bbcode', 'phpbb2'); ! //include_once( $phpbb_root_path . 'includes/bbcode.' . $phpEx ); ! mx_page::load_file('functions_post', 'phpbb2'); ! //include_once( $phpbb_root_path . 'includes/functions_post.' . $phpEx ); // Start session management --- 59,64 ---- $tplEx = 'tpl'; ! mx_cache::load_file('bbcode', 'phpbb2'); ! mx_cache::load_file('functions_post', 'phpbb2'); // Start session management |
|
From: Jon O. <jon...@us...> - 2008-07-10 22:22:01
|
Update of /cvsroot/mxbb/mx_calsnails/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv450 Modified Files: cal_functions.php Log Message: Moving load_file to mx_cache... Index: cal_functions.php =================================================================== RCS file: /cvsroot/mxbb/mx_calsnails/includes/cal_functions.php,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** cal_functions.php 3 Jun 2008 20:07:10 -0000 1.13 --- cal_functions.php 10 Jul 2008 22:21:58 -0000 1.14 *************** *** 237,241 **** if( !function_exists('generate_smilies') ) { ! mx_page::load_file('functions_post'); } --- 237,241 ---- if( !function_exists('generate_smilies') ) { ! mx_cache::load_file('functions_post'); } *************** *** 416,420 **** if( !function_exists('generate_smilies') ) { ! mx_page::load_file('functions_post'); } --- 416,420 ---- if( !function_exists('generate_smilies') ) { ! mx_cache::load_file('functions_post'); } *************** *** 603,612 **** if( !function_exists('prepare_message') ) { ! mx_page::load_file('functions_post'); } if( !function_exists('make_bbcode_uid') ) { ! mx_page::load_file('bbcode'); } --- 603,612 ---- if( !function_exists('prepare_message') ) { ! mx_cache::load_file('functions_post'); } if( !function_exists('make_bbcode_uid') ) { ! mx_cache::load_file('bbcode'); } |