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>
This commit is contained in:
Lukas Fleischer 2012-09-18 13:21:29 +02:00
parent 0afe82f87c
commit 3d4cb66aed

View file

@ -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');
}
}