diff options
author | Callan Barrett <wizzomafizzo@gmail.com> | 2008-01-07 09:44:21 +0900 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-01-20 00:21:19 -0600 |
commit | 8c94552042115d2a7bb04de3b4f66cdf95f2a5de (patch) | |
tree | 88734e06dd9a123a0c6a5e243e48d5345ad415b6 /web/lib/aurjson.class.php | |
parent | bf5c28cf2260df822efa72095af69cc119170a3e (diff) | |
download | aurweb-8c94552042115d2a7bb04de3b4f66cdf95f2a5de.tar.xz |
Add notify column in search results and notify button
Adds a column to search results showing if a package has comment
notification enabled and adds support for toggling notify for
multiple packages from search
Signed-off-by: Callan Barrett <wizzomafizzo@gmail.com>
Diffstat (limited to 'web/lib/aurjson.class.php')
-rw-r--r-- | web/lib/aurjson.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/lib/aurjson.class.php b/web/lib/aurjson.class.php index e6e40ff..2df8dd3 100644 --- a/web/lib/aurjson.class.php +++ b/web/lib/aurjson.class.php @@ -108,7 +108,7 @@ class AurJSON { private function info($pqdata) { $base_query = "SELECT ID,Name,Version,Description,URL,URLPath,License,NumVotes,OutOfDate FROM Packages WHERE "; - if is_numeric($pqdata) { + if ( is_numeric($pqdata) ) { // just using sprintf to coerce the pqd to an int // should handle sql injection issues, since sprintf will // bork if not an int, or convert the string to a number 0 |