|
From: FlorinCB <ory...@us...> - 2008-11-06 00:57:26
|
Update of /cvsroot/mxbb/core/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv2896 Modified Files: page_tail.php Log Message: fix like the above fixes Index: page_tail.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/page_tail.php,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** page_tail.php 31 Oct 2008 19:02:21 -0000 1.43 --- page_tail.php 6 Nov 2008 00:57:21 -0000 1.44 *************** *** 51,55 **** $template->assign_block_vars('page_last_updated', array( ! 'L_PAGE_UPDATED' => $lang['Page_updated_date'], 'NAME' => $userdata['user_level'] == ADMIN ? $lang['Page_updated_by'] . $editor_name : '', 'TIME' => $edit_time, --- 51,55 ---- $template->assign_block_vars('page_last_updated', array( ! 'L_PAGE_UPDATED' => isset($lang['Page_updated_date']) ? $lang['Page_updated_date'] : 'Page Updated', 'NAME' => $userdata['user_level'] == ADMIN ? $lang['Page_updated_by'] . $editor_name : '', 'TIME' => $edit_time, *************** *** 75,79 **** } ! $debug_output .= sprintf('Time : %.3fs | ' . $db->sql_num_queries() . ' Queries | GZIP : ' . (($board_config['gzip_compress']) ? 'On' : 'Off' ) . ' | Load : ' . (($user->load) ? $user->load : 'N/A'), $totaltime); if (defined('DEBUG_EXTRA')) --- 75,79 ---- } ! $debug_output .= sprintf('Time : %.3fs | ' . @$db->sql_num_queries() . ' Queries | GZIP : ' . (($board_config['gzip_compress']) ? 'On' : 'Off' ) . ' | Load : ' . (($mx_user->load) ? $mx_user->load : 'N/A'), $totaltime); if (defined('DEBUG_EXTRA')) *************** *** 99,103 **** // $mx_addional_footer_text = ''; ! if ( count($mx_page->mxbb_footer_addup) > 0 ) { foreach($mx_page->mxbb_footer_addup as $key => $mx_footer_text) --- 99,103 ---- // $mx_addional_footer_text = ''; ! if (isset($mx_page->mxbb_footer_addup) && (count($mx_page->mxbb_footer_addup) > 0)) { foreach($mx_page->mxbb_footer_addup as $key => $mx_footer_text) |