|
From: Jonathan H. <the...@us...> - 2002-02-14 20:13:00
|
Update of /cvsroot/phpbb/phpBB2/admin
In directory usw-pr-cvs1:/tmp/cvs-serv9131
Modified Files:
admin_board.php
Log Message:
Fix a partial problem in the site_desc that was found as a result of bug #517442 which still requires futher consideration..
Index: admin_board.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_board.php,v
retrieving revision 1.41
retrieving revision 1.42
diff -C2 -r1.41 -r1.42
*** admin_board.php 13 Feb 2002 23:12:52 -0000 1.41
--- admin_board.php 14 Feb 2002 20:12:57 -0000 1.42
***************
*** 123,127 ****
"body" => "admin/board_config_body.tpl")
);
!
$template->assign_vars(array(
"S_CONFIG_ACTION" => append_sid("admin_board.$phpEx"),
--- 123,131 ----
"body" => "admin/board_config_body.tpl")
);
! //
! // Escape any quotes in the site description for proper display in the text
! // box on the admin page
! //
! $new['site_desc'] = htmlspecialchars($new['site_desc']);
$template->assign_vars(array(
"S_CONFIG_ACTION" => append_sid("admin_board.$phpEx"),
***************
*** 302,304 ****
include('page_footer_admin.'.$phpEx);
! ?>
\ No newline at end of file
--- 306,308 ----
include('page_footer_admin.'.$phpEx);
! ?>
|