|
From: Jon O. <jon...@us...> - 2008-07-06 22:11:34
|
Update of /cvsroot/mxbb/mx_bugsbt/bugsbt/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv25749/includes Modified Files: functions.php Log Message: Index: functions.php =================================================================== RCS file: /cvsroot/mxbb/mx_bugsbt/bugsbt/includes/functions.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** functions.php 3 Jun 2008 20:07:45 -0000 1.10 --- functions.php 6 Jul 2008 22:11:31 -0000 1.11 *************** *** 521,525 **** * @param unknown_type $item_id */ ! function init( $item_id = 0) { global $db, $lang, $module_root_path, $mx_root_path, $phpbb_root_path, $phpEx, $userdata, $mx_bugsbt; --- 521,525 ---- * @param unknown_type $item_id */ ! function init( $item_id = 0, $allow_comment_wysiwyg = 0) { global $db, $lang, $module_root_path, $mx_root_path, $phpbb_root_path, $phpEx, $userdata, $mx_bugsbt; *************** *** 628,631 **** --- 628,636 ---- $this->temp_url = PORTAL_URL . $mx_bugsbt->this_mxurl("mode=" . "index&k=" . $this->data['item_id'], false, true); $mx_root_path = $mx_root_path_tmp; + + // + // Toggles + // + $this->allow_comment_wysiwyg = $allow_comment_wysiwyg; } } |