diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2022-04-07 17:26:56 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2022-04-07 17:26:56 +0200 |
commit | 472b26838b26d7e869b6d70e5a77214b2e06477f (patch) | |
tree | b2594b827741ec33850dfab9dddb8298d4313503 | |
parent | 378546712dbc4bd44dce987e4fbad46c0f9b6624 (diff) | |
download | gigologadmin-472b26838b26d7e869b6d70e5a77214b2e06477f.tar.gz gigologadmin-472b26838b26d7e869b6d70e5a77214b2e06477f.tar.bz2 gigologadmin-472b26838b26d7e869b6d70e5a77214b2e06477f.zip |
Fix query for concerts with filter.
-rw-r--r-- | includes/concert.php | 2 |
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'; |