|
From: Paul S. O. <ps...@us...> - 2001-10-11 12:32:09
|
Update of /cvsroot/phpbb/phpBB2/admin In directory usw-pr-cvs1:/tmp/cvs-serv29303/admin Modified Files: admin_board.php Log Message: Added configuration for allowed html tags Index: admin_board.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/admin/admin_board.php,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -r1.25 -r1.26 *** admin_board.php 2001/10/01 23:47:19 1.25 --- admin_board.php 2001/10/11 12:32:05 1.26 *************** *** 67,70 **** --- 67,71 ---- $lang_select = language_select($new['default_lang'], 'default_lang', "../language"); $timezone_select = tz_select($new['board_timezone'], 'board_timezone'); + $html_tags = $new['allow_html_tags']; $override_user_style_yes = ($new['override_user_style']) ? "checked=\"checked\"" : ""; *************** *** 130,134 **** "GZIP_NO" => $gzip_no, "PRUNE_YES" => $prune_yes, ! "PRUNE_NO" => $prune_no, "HTML_YES" => $html_yes, "HTML_NO" => $html_no, --- 131,136 ---- "GZIP_NO" => $gzip_no, "PRUNE_YES" => $prune_yes, ! "PRUNE_NO" => $prune_no, ! "HTML_TAGS" => $html_tags, "HTML_YES" => $html_yes, "HTML_NO" => $html_no, |