summaryrefslogtreecommitdiffstats
path: root/web/lib/aurjson.class.php
diff options
context:
space:
mode:
Diffstat (limited to 'web/lib/aurjson.class.php')
-rw-r--r--web/lib/aurjson.class.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/web/lib/aurjson.class.php b/web/lib/aurjson.class.php
index 7d94dab..e102fed 100644
--- a/web/lib/aurjson.class.php
+++ b/web/lib/aurjson.class.php
@@ -437,9 +437,13 @@ class AurJSON {
*/
private function msearch($http_data) {
$maintainer = $http_data['arg'];
- $maintainer = $this->dbh->quote($maintainer);
- $where_condition = "Users.Username = $maintainer ";
+ if (empty($maintainer)) {
+ $where_condition = "Users.ID is NULL";
+ } else {
+ $maintainer = $this->dbh->quote($maintainer);
+ $where_condition = "Users.Username = $maintainer ";
+ }
return $this->process_query('msearch', $where_condition);
}