|
From: FlorinCB <ory...@us...> - 2008-10-04 08:16:38
|
Update of /cvsroot/mxbb/core/includes/shared/phpbb2/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv30073/includes/shared/phpbb2/includes Modified Files: emailer.php functions.php functions_post.php functions_selects.php functions_validate.php Log Message: new Mx_BBcode merged in one backend file Index: functions.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/shared/phpbb2/includes/functions.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** functions.php 30 Sep 2008 07:04:42 -0000 1.4 --- functions.php 4 Oct 2008 07:04:25 -0000 1.5 *************** *** 93,97 **** $username = substr(htmlspecialchars(str_replace("\'", "'", trim($username))), 0, 25); //$username = $this->phpbb_rtrim($username, "\\"); ! $username = $phpBB2->phpbb_rtrim($username, "\\"); // php4 $username = str_replace("'", "\'", $username); --- 93,97 ---- $username = substr(htmlspecialchars(str_replace("\'", "'", trim($username))), 0, 25); //$username = $this->phpbb_rtrim($username, "\\"); ! $username = phpBB2::phpbb_rtrim($username, "\\"); // php4 $username = str_replace("'", "\'", $username); *************** *** 195,199 **** { $user = $this->phpbb_clean_username($user); ! //$user = $phpBB2->phpbb_clean_username($user); // php4 } else --- 195,199 ---- { $user = $this->phpbb_clean_username($user); ! //$user = phpBB2::phpbb_clean_username($user); // php4 } else |