From: Marshall R. <mr...@db...> - 2002-07-04 23:26:46
|
one other thing, but it's a bit of a mystery. i added a configuration option, $SITE_IMGSRC, that, if non-empty, is supposed to contain a URI pointing to an image to put up at the top of the page. if you look at what i added to includes/screen.php, you'll see how it gets used, i.e., + if( $SITE_IMGSRC != "" ) { + echo "<TR valign=\"top\"><TD"; + if( $no_menu == 0 ) + echo " width=\"175\"></TD><TD"; + else + echo " colspan=\"2\""; + echo " align=\"center\"><IMG src=\""; + echo $SITE_IMGSRC; + echo "\"></TD></TR>\n"; + } + now, here's the mystery, no matter what value i put into config.php for $SITE_IMGSRC, the value in screen.php is always "". after staring at the code for an hour, i'm convinced that config.php is always include'd before screen.php, so this just makes no sense. any ideas? thanks, /mtr |