diff options
author | Evan O'Connell <oconn.e@gmail.com> | 2013-08-18 18:33:35 -0400 |
---|---|---|
committer | Evan O'Connell <oconn.e@gmail.com> | 2013-08-18 18:33:35 -0400 |
commit | e528c725c6e74e8b1c782df367652a63aff669eb (patch) | |
tree | 5f6b6813dc0a4ebc3075fa6dfb82226cc3de025b /themes/default/footer.php | |
parent | 7161864ff404f93d0bb2bf400bbd7d1ead76150d (diff) | |
download | bayonetcms-e528c725c6e74e8b1c782df367652a63aff669eb.tar.gz |
Cleans up the default theme
Diffstat (limited to 'themes/default/footer.php')
-rw-r--r-- | themes/default/footer.php | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/themes/default/footer.php b/themes/default/footer.php index afadce7..db656ce 100644 --- a/themes/default/footer.php +++ b/themes/default/footer.php @@ -16,7 +16,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ - + $phpversion = preg_replace('/[a-z-]/', '', phpversion()); $mtime = explode(' ', microtime()); $totaltime = $mtime[0] + $mtime[1] - $starttime; @@ -26,25 +26,19 @@ $debug_output = sprintf("Page generated in %.3f seconds | Memory: real(%.3fmb) p <div class="footer"> - <br /> - <span class="footer-text"> - All logos and trademarks on this site are property of their respective owner. The comments are property of their posters, all the rest © 2001-<?php echo date('Y'); ?> 3rd Infantry Division.</span> - - <br /><br /> - - <a href="admin/">Administrative Control Panel</a><br /> +<a href="admin/">Administrative Control Panel</a><br /> <?php echo $config['product']['name'] . ' ' . $config['product']['version'] . ' ' . $config['product']['release'] ?><br /> <?php echo stripslashes($config['product']['copyright']); ?><br /> <?php if($config['debug']['enabled']) echo $debug_output ?><br /> + </div> <?php - if($config['debug']['enabled']){ +if($config['debug']['enabled']){ logQueueFlush(); - } +} ?> </body> </html> -<?php ob_flush();?> - +<?php ob_flush();?>
\ No newline at end of file |