includes/template.php
changeset 1364 68c17d935750
parent 1363 f1ed3e9298ae
parent 1361 26e80700ff1d
equal deleted inserted replaced
1363:f1ed3e9298ae 1364:68c17d935750
  1470 			
  1470 			
  1471 			$t = ( $simple ) ? $this->process_template('simple-footer.tpl') : $this->process_template('footer.tpl');
  1471 			$t = ( $simple ) ? $this->process_template('simple-footer.tpl') : $this->process_template('footer.tpl');
  1472 			
  1472 			
  1473 			$f = microtime_float();
  1473 			$f = microtime_float();
  1474 			$f = $f - $_starttime;
  1474 			$f = $f - $_starttime;
  1475 			$f = round($f, 2);
  1475 			$f = sprintf("%.02f", $f);
  1476 			
  1476 			
  1477 			$t_loc = $lang->get('page_msg_stats_gentime_short', array('time' => $f));
  1477 			$t_loc = $lang->get('page_msg_stats_gentime_short', array('time' => $f));
  1478 			$t_loc_long = $lang->get('page_msg_stats_gentime_long', array('time' => $f));
  1478 			$t_loc_long = $lang->get('page_msg_stats_gentime_long', array('time' => $f));
  1479 			$q_loc = '<a href="' . $this->tpl_strings['REPORT_URI'] . '">' . $lang->get('page_msg_stats_sql', array('nq' => $db->num_queries)) . '</a>';
  1479 			$q_loc = '<a href="' . $this->tpl_strings['REPORT_URI'] . '">' . $lang->get('page_msg_stats_sql', array('nq' => $db->num_queries)) . '</a>';
  1480 			$dbg = $t_loc;
  1480 			$dbg = $t_loc;