unnecessary disc access

This commit is contained in:
Marc Delisle
2006-06-09 20:55:08 +00:00
parent 110277793a
commit e32dceaa78
5 changed files with 17 additions and 15 deletions

View File

@@ -146,7 +146,10 @@ echo sprintf( $GLOBALS['strWelcome'],
</div>
<?php
echo '</div>' . "\n";
require './libraries/footer_custom.inc.php';
if (file_exists('./config.footer.inc.php')) {
require('./config.footer.inc.php');
}
echo ' </body>' . "\n"
. '</html>';
exit();