|
From: Andreas K. <la...@us...> - 2003-01-21 17:17:55
|
Update of /cvsroot/pn-modules/PN_phpBB_14/html/modules/phpBB_14
In directory sc8-pr-cvs1:/tmp/cvs-serv20937/PN_phpBB_14/html/modules/phpBB_14
Modified Files:
pninit.php
Log Message:
new config vars for show_bbcode, show_smile, log_ip
Index: pninit.php
===================================================================
RCS file: /cvsroot/pn-modules/PN_phpBB_14/html/modules/phpBB_14/pninit.php,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** pninit.php 14 Jan 2003 14:41:49 -0000 1.21
--- pninit.php 21 Jan 2003 17:17:51 -0000 1.22
***************
*** 353,356 ****
--- 353,359 ----
pnModSetVar('phpBB_14', 'post_sort_order', "ASC");
pnModSetVar('phpBB_14', 'show_html', "yes");
+ pnModSetVar('phpBB_14', 'show_bbcode', "yes");
+ pnModSetVar('phpBB_14', 'show_smile', "yes");
+ pnModSetVar('phpBB_14', 'log_ip', "yes");
// deprecated module vars
//pnModSetVar('phpBB_14', 'reply_image', "modules/$module/images/reply.gif");
***************
*** 634,638 ****
pnModDelVar('phpBB_14', 'post_sort_order');
pnModDelVar('phpBB_14', 'show_html');
! // remove former module vars as reference to old installations
pnModDelVar('phpBB_14', 'edit_image');
pnModDelVar('phpBB_14', 'reply_image');
--- 637,644 ----
pnModDelVar('phpBB_14', 'post_sort_order');
pnModDelVar('phpBB_14', 'show_html');
! pnModDelVar('phpBB_14', 'show_bbcode');
! pnModDelVar('phpBB_14', 'show_smile');
! pnModDelVar('phpBB_14', 'log_ip');
! // remove former module vars as reference to old installations
pnModDelVar('phpBB_14', 'edit_image');
pnModDelVar('phpBB_14', 'reply_image');
|