owls
changeset 16:22243e7c7dc5
Name of banner pic is now configurable
author | meillo@marmaro.de |
---|---|
date | Sun, 27 May 2007 14:06:42 +0200 |
parents | bae203f70c9b |
children | 081ba8764994 |
files | Config/Config.inc.php Owls.php |
diffstat | 2 files changed, 4 insertions(+), 1 deletions(-) [+] |
line diff
1.1 --- a/Config/Config.inc.php Sun May 27 03:04:52 2007 +0200 1.2 +++ b/Config/Config.inc.php Sun May 27 14:06:42 2007 +0200 1.3 @@ -9,4 +9,7 @@ 1.4 // Location of the database connection script to include 1.5 $db_connect = '../../Db.inc.php'; 1.6 1.7 +// Name of the banner pic 1.8 +$banner = 'Owls.png'; 1.9 + 1.10 ?>
2.1 --- a/Owls.php Sun May 27 03:04:52 2007 +0200 2.2 +++ b/Owls.php Sun May 27 14:06:42 2007 +0200 2.3 @@ -69,7 +69,7 @@ 2.4 <div id="websiteContainer"> 2.5 2.6 <!-- Banner --> 2.7 - <img src="Owls.png" id="banner" alt="<?php echo htmlentities(TITLE); ?>" /> 2.8 + <img src="<?php echo $banner; ?>" id="banner" alt="<?php echo htmlentities(TITLE); ?>" /> 2.9 2.10 <?php 2.11