|
From: OryNider <ory...@us...> - 2008-01-31 08:51:39
|
Update of /cvsroot/mxbb/mx_act/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv8846/includes Modified Files: Tag: core28x act_functions.php act_games.php Log Message: my_act/root/newscore.php should be copyed @ the mxBB root and the score will be saved ... Index: act_functions.php =================================================================== RCS file: /cvsroot/mxbb/mx_act/includes/act_functions.php,v retrieving revision 1.7 retrieving revision 1.7.2.1 diff -C2 -d -r1.7 -r1.7.2.1 *** act_functions.php 17 Jun 2006 20:10:12 -0000 1.7 --- act_functions.php 31 Jan 2008 08:50:37 -0000 1.7.2.1 *************** *** 233,239 **** function this_act_mxurl( $args = '', $force_standalone_mode = false ) { ! global $mx_root_path, $module_root_path, $page_id, $phpEx, $is_block; ! if ( $force_standalone_mode || !$is_block ) { $mxurl = PORTAL_URL . 'modules/mx_act/activity.' . $phpEx . ( $args == '' ? '' : '?' . $args ); --- 233,239 ---- function this_act_mxurl( $args = '', $force_standalone_mode = false ) { ! global $mx_root_path, $module_root_path, $page_id, $phpEx, $is_block, $act_config; ! if ( $force_standalone_mode ) { $mxurl = PORTAL_URL . 'modules/mx_act/activity.' . $phpEx . ( $args == '' ? '' : '?' . $args ); *************** *** 248,252 **** else { ! $mxurl .= ( $args == '' ? '' : '?' . $args ); } } --- 248,252 ---- else { ! $mxurl .= '?page=' . $act_config['ina_page'] . ( $args == '' ? '' : '&' . $args ); } } Index: act_games.php =================================================================== RCS file: /cvsroot/mxbb/mx_act/includes/act_games.php,v retrieving revision 1.7 retrieving revision 1.7.2.1 diff -C2 -d -r1.7 -r1.7.2.1 *** act_games.php 17 Jun 2006 20:10:12 -0000 1.7 --- act_games.php 31 Jan 2008 08:50:38 -0000 1.7.2.1 *************** *** 296,300 **** 'BASE_PATH' => $base_path, 'GAMELIB' => $module_root_path . $act_config['games_path'] . "/" . $act_config['gamelib_path'] . "/", ! 'S_GAME_ACTION' => append_sid( $base_path . 'newscore.' . $phpEx . '?mode=check_score&game_name=' . $game_name ) ) ); } --- 296,300 ---- 'BASE_PATH' => $base_path, 'GAMELIB' => $module_root_path . $act_config['games_path'] . "/" . $act_config['gamelib_path'] . "/", ! 'S_GAME_ACTION' => append_sid( $module_root_path . 'newscore.' . $phpEx . '?mode=check_score&game_name=' . $game_name ) ) ); } |