Update of /cvsroot/openfirst/logger
In directory sc8-pr-cvs1:/tmp/cvs-serv15960
Modified Files:
stats.php
Log Message:
Remove error message by first checking if there is in fact a ['ID'] set.
Index: stats.php
===================================================================
RCS file: /cvsroot/openfirst/logger/stats.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** stats.php 22 Dec 2003 19:32:45 -0000 1.5
--- stats.php 23 Dec 2003 00:28:36 -0000 1.6
***************
*** 85,89 ****
</tr>
<tr>
! <td width="32"><a href='track.php?ID=<?php echo $_GET['ID']; ?>&DELETE=true'><img src="<?php echo $home.$basepath; ?>/members/icons/apps/kcalc.png" border="0"></a></td>
<td width="286"><b><a href="<?php echo($_SERVER["PHP_SELF"]); ?>?graph=1">Usage
Graphs</a></b></td>
--- 85,89 ----
</tr>
<tr>
! <td width="32"><a href='track.php?ID=<?php if(isset($_GET['ID'])) { echo $_GET['ID']; } ?>&DELETE=true'><img src="<?php echo $home.$basepath; ?>/members/icons/apps/kcalc.png" border="0"></a></td>
<td width="286"><b><a href="<?php echo($_SERVER["PHP_SELF"]); ?>?graph=1">Usage
Graphs</a></b></td>
|