|
From: Jon O. <jon...@us...> - 2008-06-15 21:04:25
|
Update of /cvsroot/mxbb/mx_linkdb In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27103 Modified Files: linkdb.php Log Message: using new load_file to ensure we are including phpbb2 bbcodes/smilies Index: linkdb.php =================================================================== RCS file: /cvsroot/mxbb/mx_linkdb/linkdb.php,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** linkdb.php 3 Jun 2008 20:08:42 -0000 1.17 --- linkdb.php 15 Jun 2008 21:04:20 -0000 1.18 *************** *** 60,65 **** $tplEx = 'tpl'; ! include_once( $phpbb_root_path . 'includes/bbcode.' . $phpEx ); ! include_once( $phpbb_root_path . 'includes/functions_post.' . $phpEx ); // Start session management --- 60,67 ---- $tplEx = 'tpl'; ! mx_page::load_file('bbcode', 'phpbb2'); ! //include_once( $phpbb_root_path . 'includes/bbcode.' . $phpEx ); ! mx_page::load_file('functions_post', 'phpbb2'); ! //include_once( $phpbb_root_path . 'includes/functions_post.' . $phpEx ); // Start session management *************** *** 75,81 **** $tplEx = 'html'; - //include_once( $mx_mod_path . 'includes/shared/phpbb2/includes/bbcode.' . $phpEx ); - //include_once( $mx_mod_path . 'includes/shared/phpbb2/includes/functions_post.' . $phpEx ); - // // Start session management --- 77,80 ---- |