diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-09-18 13:57:09 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-09-18 14:05:11 +0200 |
commit | 2e552cbcad8f4abd64041c793851b7420dd5361c (patch) | |
tree | 3c36cbf15d5073a04f548456ed6fe97f923a4aab /web/html/index.php | |
parent | 20704e90534beeb0ce09276bd7954086c3b12d7a (diff) | |
download | aurweb-2e552cbcad8f4abd64041c793851b7420dd5361c.tar.xz |
Do not set GET parameters in the routing framework
Setting GET parameters manually is bad style and causes some strange
side effects when using virtual URLs and mkurl().
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/html/index.php')
-rw-r--r-- | web/html/index.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/web/html/index.php b/web/html/index.php index 2d80a94..5c56868 100644 --- a/web/html/index.php +++ b/web/html/index.php @@ -9,8 +9,11 @@ $tokens = explode('/', $path); if (isset($tokens[1]) && '/' . $tokens[1] == get_pkg_route()) { if (isset($tokens[2])) { - unset($_GET['ID']); - $_GET['N'] = $tokens[2]; + /* TODO: Create a proper data structure to pass variables from + * the routing framework to the individual pages instead of + * initializing arbitrary variables here. */ + $pkgname = $tokens[2]; + $pkgid = pkgid_from_name($pkgname); if (isset($tokens[3])) { if ($tokens[3] == 'voters') { |