|
From: OryNider <ory...@us...> - 2008-02-23 15:53:05
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv32198 Modified Files: mx_functions_phpbb.php Log Message: function mx_smilies_pass fix, nothing serious yet, but we should make one more change when droping shared folder. Index: mx_functions_phpbb.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_phpbb.php,v retrieving revision 1.48 retrieving revision 1.49 diff -C2 -d -r1.48 -r1.49 *** mx_functions_phpbb.php 22 Feb 2008 23:02:49 -0000 1.48 --- mx_functions_phpbb.php 23 Feb 2008 15:52:46 -0000 1.49 *************** *** 185,192 **** --- 185,197 ---- { case 'internal': + $smiley_path_url = PHPBB_URL; //change this to PORTAL_URL when shared folder will be removed + $smiley_url = 'smile_url'; + break; case 'phpbb2': + $smiley_path_url = PHPBB_URL; $smiley_url = 'smile_url'; break; case 'phpbb3': + $smiley_path_url = PHPBB_URL; $smiley_url = 'smiley_url'; $board_config['smilies_path'] = str_replace("smiles", "smilies", $board_config['smilies_path']); *************** *** 195,199 **** $smilies_path = $board_config['smilies_path']; ! $board_config['smilies_path'] = PHPBB_URL . $board_config['smilies_path']; if (!isset($orig)) --- 200,204 ---- $smilies_path = $board_config['smilies_path']; ! $board_config['smilies_path'] = $smiley_path_url . $board_config['smilies_path']; if (!isset($orig)) |