Hide time of signups, show just date.

svn path=/trunk/; revision=25296
This commit is contained in:
otto 2013-02-18 17:36:15 +00:00
parent 117917dc92
commit a0d2b2bfa5
1 changed files with 2 additions and 2 deletions

View File

@ -587,7 +587,7 @@ for (i = 0; i < seriesData.length; i++) {
<h3>Latest 20 sign ups</h3>
<table id="lastlog">
<tr>
<th>Timestamp</th>
<th>Date</th>
<th>Country</th>
<th>Referrer url</th>
<th>Referrer id (support?xxxx)</th>
@ -623,7 +623,7 @@ while ($row = $query->fetch(PDO::FETCH_ASSOC)) {
<td><a href="?country_code='. $row["country_code"] .'">'. $row["country_code"] .'</a></td>
<td><a href="?ref_url='. $row["ref_url"] .'">'. $row["ref_url"] .'</a></td>
<td><a href="?ref_id='. $row["ref_id"] .'">'. $row["ref_id"] .'</a></td>
<td>'. $row["confirmed"] .'</td>
<td>'. substr($row["confirmed"], 0, 10) .'</td>
</tr>';
}
?>