|
From: MW <jo...@us...> - 2008-02-10 22:37:34
|
Update of /cvsroot/mxbb/core/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv10013/admin Modified Files: index.php Log Message: no need to check isset twice, wrapper deal with that Index: index.php =================================================================== RCS file: /cvsroot/mxbb/core/admin/index.php,v retrieving revision 1.41 retrieving revision 1.42 diff -C2 -d -r1.41 -r1.42 *** index.php 9 Feb 2008 12:44:32 -0000 1.41 --- index.php 10 Feb 2008 22:37:30 -0000 1.42 *************** *** 87,91 **** // Generate relevant output // ! if ($mx_request_vars->is_get('pane') && $mx_request_vars->get('pane', MX_TYPE_NO_TAGS) == 'left' ) { include('./page_header_admin.'.$phpEx); --- 87,91 ---- // Generate relevant output // ! if ($mx_request_vars->get('pane', MX_TYPE_NO_TAGS) == 'left' ) { include('./page_header_admin.'.$phpEx); *************** *** 356,360 **** include('./page_footer_admin.'.$phpEx); } ! elseif ($mx_request_vars->is_get('pane') && $mx_request_vars->get('pane', MX_TYPE_NO_TAGS) == 'right' ) { --- 356,360 ---- include('./page_footer_admin.'.$phpEx); } ! elseif ($mx_request_vars->get('pane', MX_TYPE_NO_TAGS) == 'right' ) { |