summaryrefslogtreecommitdiff
path: root/p/f.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-01-19 22:25:49 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-01-19 22:25:49 +0100
commit4e4b0f717fe0a8378e2b751393a8c19d1ada6eb2 (patch)
tree6b268cfe46eb3eee8ebaddcd1e17067eaca0214f /p/f.php
parent12e0b6b094041fc22937520b3218e4f61915fd50 (diff)
parent79d4893fc792119c390d2f744246df210b74f637 (diff)
Merge remote-tracking branch 'origin/dev' into beta
Diffstat (limited to 'p/f.php')
-rw-r--r--p/f.php15
1 files changed, 1 insertions, 14 deletions
diff --git a/p/f.php b/p/f.php
index 660128a59..5db9ab213 100644
--- a/p/f.php
+++ b/p/f.php
@@ -7,13 +7,6 @@ function download_favicon ($website, $dest) {
$ok = false;
$url = 'http://g.etfv.co/' . $website;
- /*if (!is_dir ($favicons_dir)) {
- if (!mkdir ($favicons_dir, 0755, true)) {
- header('Location: ' . $url);
- return false;
- }
- }*/
-
$c = curl_init ($url);
curl_setopt ($c, CURLOPT_HEADER, false);
curl_setopt ($c, CURLOPT_RETURNTRANSFER, true);
@@ -36,13 +29,7 @@ function download_favicon ($website, $dest) {
return true;
}
-if (isset($_SERVER['PATH_INFO'])) {
- $id = substr($_SERVER['PATH_INFO'], 1);
-} elseif (isset($_SERVER['QUERY_STRING'])) {
- $id = $_SERVER['QUERY_STRING'];
-} else {
- $id = '0';
-}
+$id = isset($_SERVER['QUERY_STRING']) ? $_SERVER['QUERY_STRING'] : '0';
if (!ctype_xdigit($id)) {
$id = '0';