1
0
mirror of https://github.com/gamaio/lobli.git synced 2025-08-13 18:28:47 +00:00

Remove title grabbing.

This thing is just a big pain and isn't really needed, so I'm removing it.
Really the options for getting the title or even the description involved downloading the whole file.
This commit is contained in:
alopexc0de
2014-08-15 19:35:35 -04:00
parent 0836e64c80
commit cacd80a024
3 changed files with 5 additions and 20 deletions

View File

@@ -59,7 +59,6 @@
$linkData = $redis->lRange("links:$id", 0, -1);
$link = $linkData[0];
$title = $linkData[1];
$date = $linkData[2];
$trackClicks = $redis->zScore("tracking:clicks", $id);
@@ -67,7 +66,7 @@
<tr class=\"success\">
<td></td>
<td class=\"centertab\"><a href=\"http://lob.li/$id\">$id</a></td>
<td><a href=\"$link\" title=\"$title\" class=\"res\">$link</a></td>
<td><a href=\"$link\" class=\"res\">$link</a></td>
<td class=\"centertab\">$trackClicks</td>
<td>$date</td>
</tr>