|
From: <v9...@us...> - 2003-10-05 22:02:48
|
Update of /cvsroot/zoomstats/www/htdocs
In directory sc8-pr-cvs1:/tmp/cvs-serv4123
Modified Files:
header.php
Log Message:
The percentages were wrong, so index.php boxes were smaller and too much to the left, compared to all the other pages, it's fixed now :)
Index: header.php
===================================================================
RCS file: /cvsroot/zoomstats/www/htdocs/header.php,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** header.php 5 Oct 2003 00:30:50 -0000 1.13
--- header.php 5 Oct 2003 22:02:39 -0000 1.14
***************
*** 96,112 ****
<?
! if(strstr($_SERVER['PHP_SELF'], "docs")) {
! ;
! }
! elseif(strstr($_SERVER['PHP_SELF'], "index.php")) {?>
! <table bgcolor="#ffffff" width="96%" cellpadding="10" cellspacing="0" border="0">
<tbody><tr>
<td valign="top">
! <table cellpadding="1" cellspacing="0" border="0" width="96%" id="zoomtable" align="center">
<tbody><tr>
! <td width="80%" valign="top" align="left" height="51"><font class="nf"><b>Welcome
to Zoomstats.org.</b></font><br />
<font class="sf"><br>ZoomStats is an Open Source Web Traffic Analyzer licensed under the GPL. If you want to know more about ZoomStats, be sure to check our <a href="/faq.php"><b>FAQ</b></a>.
! </font></td>
<? } ?>
--- 96,111 ----
<?
!
! if(strstr($_SERVER['PHP_SELF'], "index.php") && !strstr($_SERVER['PHP_SELF'], "docs")) {?>
!
! <table bgcolor="#ffffff" width="100%" cellpadding="10" cellspacing="0" border="0">
<tbody><tr>
<td valign="top">
! <table cellpadding="1" cellspacing="0" border="0" width="98%" id="zoomtable" align="center">
<tbody><tr>
! <td width="100%" valign="top" align="left" height="51"><font class="nf"><b>Welcome
to Zoomstats.org.</b></font><br />
<font class="sf"><br>ZoomStats is an Open Source Web Traffic Analyzer licensed under the GPL. If you want to know more about ZoomStats, be sure to check our <a href="/faq.php"><b>FAQ</b></a>.
! </font></td></tr></tbody></table></td></tr></tbody></table>
<? } ?>
|