|
From: MW <jo...@us...> - 2008-02-10 22:05:23
|
Update of /cvsroot/mxbb/core/templates/_core/images In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27356/templates/_core/images Modified Files: index.php Log Message: no need to check isset twice, wrapper deal with that Index: index.php =================================================================== RCS file: /cvsroot/mxbb/core/templates/_core/images/index.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** index.php 9 Feb 2008 12:51:55 -0000 1.3 --- index.php 10 Feb 2008 22:05:19 -0000 1.4 *************** *** 72,76 **** // 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); --- 72,76 ---- // Generate relevant output // ! if ($mx_request_vars->get('pane', MX_TYPE_NO_TAGS) == 'left' ) { include('./page_header_admin.'.$phpEx); *************** *** 305,309 **** include('./page_footer_admin.'.$phpEx); } ! elseif ($mx_request_vars->is_get('pane') && $mx_request_vars->get('pane', MX_TYPE_NO_TAGS) == 'right' ) { --- 305,309 ---- include('./page_footer_admin.'.$phpEx); } ! elseif ($mx_request_vars->get('pane', MX_TYPE_NO_TAGS) == 'right' ) { |