summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2012-09-18 13:21:29 +0200
committerLukas Fleischer <archlinux@cryptocrack.de>2012-09-18 14:01:09 +0200
commit3d4cb66aed66313f97c942faa0dc7a4df50bfff2 (patch)
treea9ad792fdcfaa113b87cde5ff4a45a0b76f882ed
parent0afe82f87c2a66dcdc35e7373b7c20b68895ad14 (diff)
downloadaur-3d4cb66aed66313f97c942faa0dc7a4df50bfff2.tar.gz
aur-3d4cb66aed66313f97c942faa0dc7a4df50bfff2.tar.xz
index.php: Fix undefined variable notice
Spotted when browsing the package details page while being logged out. Reported-by: canyonknight <canyonknight@gmail.com> Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
-rw-r--r--web/html/index.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/web/html/index.php b/web/html/index.php
index 70698a44..2d80a945 100644
--- a/web/html/index.php
+++ b/web/html/index.php
@@ -42,7 +42,10 @@ if (isset($tokens[1]) && '/' . $tokens[1] == get_pkg_route()) {
break;
}
- $_POST['token'] = $_COOKIE['AURSID'];
+ if (isset($_COOKIE['AURSID'])) {
+ $_POST['token'] = $_COOKIE['AURSID'];
+ }
+
$_POST['IDs'] = array(pkgid_from_name($tokens[2]) => '1');
}
}