|
From: Jon O. <jon...@us...> - 2007-09-09 20:01:31
|
Update of /cvsroot/mxbb/mx_import_tools/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv15850/includes Modified Files: functions_mod_user.php Log Message: for 2.9.x Index: functions_mod_user.php =================================================================== RCS file: /cvsroot/mxbb/mx_import_tools/includes/functions_mod_user.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** functions_mod_user.php 5 May 2007 20:22:16 -0000 1.7 --- functions_mod_user.php 9 Sep 2007 20:01:27 -0000 1.8 *************** *** 15,21 **** } ! include_once( $phpbb_root_path . 'includes/functions_validate.' . $phpEx ); ! include_once( $phpbb_root_path . 'includes/functions_post.' . $phpEx ); ! include_once( $phpbb_root_path . 'includes/bbcode.' . $phpEx ); class user --- 15,32 ---- } ! if( !function_exists('validate_username') ) ! { ! mx_page::load_file('functions_validate', 'phpbb2'); ! } ! ! if( !function_exists('prepare_message') ) ! { ! mx_page::load_file('functions_post', 'phpbb2'); ! } ! ! if( !function_exists('make_bbcode_uid') ) ! { ! mx_page::load_file('bbcode', 'phpbb2'); ! } class user |