|
From: OryNider <ory...@us...> - 2008-02-16 18:45:21
|
Update of /cvsroot/mxbb/mx_phpbb/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv7064 Modified Files: forum_hack.php Log Message: Compatibility with Bin mod (Trash Can). Index: forum_hack.php =================================================================== RCS file: /cvsroot/mxbb/mx_phpbb/includes/forum_hack.php,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** forum_hack.php 16 Feb 2008 06:48:48 -0000 1.34 --- forum_hack.php 16 Feb 2008 18:45:16 -0000 1.35 *************** *** 363,366 **** --- 363,367 ---- 'viewonline' => $this->phpbb_config['viewonline'], 'cash' => $this->phpbb_config['other'], + 'bin' => $this->phpbb_config['other'], 'other' => $this->phpbb_config['other'], ); *************** *** 388,392 **** 'viewonline' => 0, 'viewtopic' => 0, ! 'cash' => 0 ); } --- 389,394 ---- 'viewonline' => 0, 'viewtopic' => 0, ! 'cash' => 0, ! 'bin' => 0 ); } *************** *** 563,567 **** return ''; } ! break; case 'search': $mode = $this->_get_mode( $url, $by_http_vars ); --- 565,569 ---- return ''; } ! break; case 'search': $mode = $this->_get_mode( $url, $by_http_vars ); *************** *** 570,574 **** return $script_name; } ! break; case 'viewtopic': $mode = $this->_get_mode( $url, $by_http_vars ); --- 572,576 ---- return $script_name; } ! break; case 'viewtopic': $mode = $this->_get_mode( $url, $by_http_vars ); *************** *** 577,581 **** return ''; } ! break; } --- 579,583 ---- return ''; } ! break; } *************** *** 1609,1613 **** } ! $code=file_get_contents($phpbb_root_path . $phpbb_file . ".$phpEx"); // --- 1611,1615 ---- } ! $code = file_get_contents($phpbb_root_path . $phpbb_file . ".$phpEx"); // |