|
From: Jon O. <jon...@us...> - 2005-04-11 20:08:09
|
Update of /cvsroot/mxbb/mx_kb/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20618/modules/mx_kb/includes Modified Files: functions_kb_field.php kb_constants.php Log Message: fixing up Index: functions_kb_field.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/includes/functions_kb_field.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** functions_kb_field.php 2 Apr 2005 20:37:02 -0000 1.3 --- functions_kb_field.php 11 Apr 2005 20:07:57 -0000 1.4 *************** *** 470,476 **** { $return_array = $this->field_rowset[$field_id]; ! $return_array['data'] = implode( "\n", unserialize( stripslashes( $return_array['data'] ) ) ); return $return_array; } // =================================================== // file data in custom field operations --- 470,477 ---- { $return_array = $this->field_rowset[$field_id]; ! $return_array['data'] = !empty( $return_array['data'] ) ? implode( "\n", unserialize( stripslashes( $return_array['data'] ) ) ) : ''; return $return_array; } + // =================================================== // file data in custom field operations Index: kb_constants.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/includes/kb_constants.php,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** kb_constants.php 9 Apr 2005 21:41:28 -0000 1.25 --- kb_constants.php 11 Apr 2005 20:07:57 -0000 1.26 *************** *** 111,115 **** if ( !MXBB_MODULE || MXBB_27x ) { ! $kb_module_version = "Knowledge Base v. 2.0"; $kb_module_author = "Haplo"; $kb_module_orig_author = "wGEric"; --- 111,115 ---- if ( !MXBB_MODULE || MXBB_27x ) { ! $kb_module_version = "Knowledge Base v. 2.0.x"; $kb_module_author = "Haplo"; $kb_module_orig_author = "wGEric"; |