[Openfirst-cvscommit] logger track.php,1.9,1.10
Brought to you by:
xtimg
From: <i-...@us...> - 2003-10-01 00:12:53
|
Update of /cvsroot/openfirst/logger In directory sc8-pr-cvs1:/tmp/cvs-serv1935/logger Modified Files: track.php Log Message: Fixed dependency on config/functions/browserid.php Index: track.php =================================================================== RCS file: /cvsroot/openfirst/logger/track.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** track.php 30 Sep 2003 23:46:38 -0000 1.9 --- track.php 1 Oct 2003 00:12:41 -0000 1.10 *************** *** 38,42 **** <h1>View Log Information</h1> <p>You are tracking the hits by: <strong><?php print $_GET['ID']; ?></strong>, ! who has visited a total of <strong><?php echo $amount; ?></strong> pages. <br> <br>[ <a href='track.php?ID=<?php echo $_GET['ID']; ?>&DELETE=true'>Delete all hits by this user ]</a></p> <table> --- 38,42 ---- <h1>View Log Information</h1> <p>You are tracking the hits by: <strong><?php print $_GET['ID']; ?></strong>, ! who has visited a total of <strong><?php echo($amount); ?></strong> pages. <br> <br>[ <a href='track.php?ID=<?php echo $_GET['ID']; ?>&DELETE=true'>Delete all hits by this user ]</a></p> <table> *************** *** 55,70 **** <? while($log = ofirst_dbfetch_object($query)) { ! echo "<tr>"; ! echo " <td>$log->ID</td>"; ! echo " <td>$log->Date</td>"; ! echo " <td>$log->IPAddress</td>"; ! echo " <td>$log->HostLookup</td>"; ! echo " <td>$log->Location</td>"; ! echo " <td>$log->QueryString</td>"; ! if($log->Member != "null"){ echo " <td>$log->Member</td>"; }else{ echo "<td>NULL</td>"; } ! echo " <td>[ <a href='./?DELETE=$log->ID'>Delete</a> ]</td>"; ! echo " <td>".identify_browser($log->Browser)."</td>"; ! echo " <td>".identify_platform($log->Browser)."</td>"; ! echo "</tr>"; } ?> --- 55,76 ---- <? while($log = ofirst_dbfetch_object($query)) { ! echo("<tr>"); ! echo(" <td>$log->ID</td>"); ! echo(" <td>$log->Date</td>"); ! echo(" <td>$log->IPAddress</td>"); ! echo(" <td>$log->HostLookup</td>"); ! echo(" <td>$log->Location</td>"); ! echo(" <td>$log->QueryString</td>"); ! if($log->Member != "null"){ echo(" <td>$log->Member</td>"); }else{ echo("<td>NULL</td>"); } ! echo(" <td>[ <a href='./?DELETE=$log->ID'>Delete</a> ]</td>"); ! echo(" <td>"); ! if(function_exists("identify_browser")){ ! echo(identify_browser($log->Browser)); ! } ! echo("</td><td>"); ! if(function_exists("identify_platform")){ ! echo(identify_platform($log->Browser)); ! } ! echo("</td></tr>"); } ?> |