|
From: Markus P. <mar...@us...> - 2005-03-21 21:27:33
|
Update of /cvsroot/mxbb/mx_kb/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21760/includes Modified Files: kb_add.php kb_edit.php Log Message: include_once phpbb/includes/functions_post.php, required by mx_generate_smilies. Index: kb_edit.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/includes/kb_edit.php,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** kb_edit.php 17 Mar 2005 12:37:24 -0000 1.13 --- kb_edit.php 21 Mar 2005 21:27:22 -0000 1.14 *************** *** 25,28 **** --- 25,30 ---- } + include_once($phpbb_root_path . "includes/functions_post.$phpEx"); // required by mx_generate_smilies + $article_id = ( isset( $HTTP_GET_VARS['k'] ) ) ? intval ( $HTTP_GET_VARS['k'] ) : intval ( $HTTP_POST_VARS['k'] ); Index: kb_add.php =================================================================== RCS file: /cvsroot/mxbb/mx_kb/includes/kb_add.php,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** kb_add.php 17 Mar 2005 12:37:24 -0000 1.13 --- kb_add.php 21 Mar 2005 21:27:21 -0000 1.14 *************** *** 25,28 **** --- 25,30 ---- } + include_once($phpbb_root_path . "includes/functions_post.$phpEx"); // required by mx_generate_smilies + $category_id = ( isset( $HTTP_GET_VARS['cat'] ) ) ? intval ( $HTTP_GET_VARS['cat'] ) : intval ( $HTTP_POST_VARS['cat'] ); |