summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2015-08-09 15:13:39 +0200
committerJohannes Löthberg <johannes@kyriasis.com>2015-08-09 16:01:16 +0200
commit5424bc90b878bdc654da450d7b0d4788154dc48c (patch)
treea77c1b874e7a4ecb4adf6c1893c64549183c1a33
parente8a6fe1efc3f4e546dd777babbb0264b6d073088 (diff)
downloadaurweb-rpc-orphans.tar.xz
rpc: msearch: Give orphans on empty maintainer argumentrpc-orphans
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
-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);
}