|
From: Jon O. <jon...@us...> - 2008-07-06 22:18:05
|
Update of /cvsroot/mxbb/mx_pafiledb/pafiledb/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv28605/includes Modified Files: functions.php Log Message: comments, notifications, etc Index: functions.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/includes/functions.php,v retrieving revision 1.45 retrieving revision 1.46 diff -C2 -d -r1.45 -r1.46 *** functions.php 3 Jun 2008 20:17:04 -0000 1.45 --- functions.php 6 Jul 2008 22:18:00 -0000 1.46 *************** *** 1174,1178 **** * @param unknown_type $item_id */ ! function init( $item_id = 0) { global $db, $lang, $module_root_path, $phpbb_root_path, $mx_root_path, $phpEx, $userdata, $pafiledb; --- 1174,1178 ---- * @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, $pafiledb; *************** *** 1284,1287 **** --- 1284,1292 ---- $this->temp_url = PORTAL_URL . $pafiledb->this_mxurl("action=" . "file&file_id=" . $this->data['item_id'], false, true); $mx_root_path = $mx_root_path_tmp; + + // + // Toggles + // + $this->allow_comment_wysiwyg = $allow_comment_wysiwyg; } } |