inc/footer.inc.php
author rejo
Wed, 27 Jun 2007 20:45:51 +0000
changeset 29 e1c60f72d494
parent 26 5d63f1e71d6e
child 31 f0afd66d7ed4
permissions -rw-r--r--
[feladat @ 76] Changed some of the functions that are used for the listing of (all) zones. Instead of getting all zones from the database, it now only requests exactlty what it needs. Considerable perfomance improvement.

<?
global $db;
if(is_object($db))
{
	 $db->disconnect();
}

 $svn_rev = '$LastChangedRevision: 73 $ $LastChangedDate: 2007-06-25 23:32:29 +0200 (Mon, 25 Jun 2007) $ $Author: rejo $';
 $svn_rev = preg_split("/[\s,]+/", $svn_rev);
 $revision = "revision $svn_rev[1] (commited at $svn_rev[4] by $svn_rev[13])";

?>
  </div> <!-- /content -->
  <div class="footer">
   <strong>poweradmin</strong> <? echo $revision;?> - <a href="credits.php"><? echo _('credits'); ?></a>
  </div>
<?
if(file_exists('inc/custom_footer.inc.php')) 
{
	include('inc/custom_footer.inc.php');
}
?>
 </body>
</html>