summaryrefslogtreecommitdiffstats
path: root/includes
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2022-04-07 17:26:56 +0200
committerHarald Eilertsen <haraldei@anduin.net>2022-04-07 17:26:56 +0200
commit472b26838b26d7e869b6d70e5a77214b2e06477f (patch)
treeb2594b827741ec33850dfab9dddb8298d4313503 /includes
parent378546712dbc4bd44dce987e4fbad46c0f9b6624 (diff)
downloadgigologadmin-472b26838b26d7e869b6d70e5a77214b2e06477f.tar.gz
gigologadmin-472b26838b26d7e869b6d70e5a77214b2e06477f.tar.bz2
gigologadmin-472b26838b26d7e869b6d70e5a77214b2e06477f.zip
Fix query for concerts with filter.
Diffstat (limited to 'includes')
-rw-r--r--includes/concert.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/concert.php b/includes/concert.php
index 996d79e..100861e 100644
--- a/includes/concert.php
+++ b/includes/concert.php
@@ -234,7 +234,7 @@ if ( !class_exists('GiglogAdmin_Concert') ) {
}
if ( ! empty( $where ) ) {
- $query .= 'AND ' . implode(' and ', $where);
+ $query .= ' AND ' . implode(' and ', $where);
}
$query .= ' ORDER BY wpgconcert_date';