|
From: Jon O. <jon...@us...> - 2008-07-06 22:12:28
|
Update of /cvsroot/mxbb/mx_kb/kb/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv26197/includes Modified Files: functions.php Log Message: comments, notifications, etc Index: functions.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/kb/includes/functions.php,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** functions.php 3 Jun 2008 20:10:15 -0000 1.23 --- functions.php 6 Jul 2008 22:12:24 -0000 1.24 *************** *** 939,943 **** * @param unknown_type $item_id */ ! function init( $item_id = 0) { global $db, $lang, $module_root_path, $phpbb_root_path, $mx_root_path, $phpEx, $userdata, $mx_kb; --- 939,943 ---- * @param unknown_type $item_id */ ! function init( $item_id = 0, $allow_comment_wysiwyg = 0) { global $db, $lang, $module_root_path, $phpbb_root_path, $mx_root_path, $phpEx, $userdata, $mx_kb; *************** *** 1048,1051 **** --- 1048,1056 ---- $this->temp_url = PORTAL_URL . $mx_kb->this_mxurl("mode=" . "article&k=" . $this->data['item_id'], false, true); $mx_root_path = $mx_root_path_tmp; + + // + // Toggles + // + $this->allow_comment_wysiwyg = $allow_comment_wysiwyg; } } |