diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2021-09-06 13:59:47 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2021-09-06 13:59:47 +0200 |
commit | 658e452b19b2061d00112b3f608f5fae33724eca (patch) | |
tree | 344481f98fb4feb533aaa73c44a61d6602dce248 | |
parent | aa72a30d4a6ffdfbdc49ab061b3ed9f76d86d7ae (diff) | |
download | gigologadmin-658e452b19b2061d00112b3f608f5fae33724eca.tar.gz gigologadmin-658e452b19b2061d00112b3f608f5fae33724eca.tar.bz2 gigologadmin-658e452b19b2061d00112b3f608f5fae33724eca.zip |
Remove unneccesary code to sort single concert by date.
-rw-r--r-- | includes/concert.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/includes/concert.php b/includes/concert.php index 66f9c1f..04305ce 100644 --- a/includes/concert.php +++ b/includes/concert.php @@ -85,7 +85,6 @@ if ( !class_exists('GiglogAdmin_Concert') ) { $query = self::BASE_QUERY . 'WHERE ' . $wpdb->prepare('wpg_concerts.id = %d', $id); - $query.= ' ORDER BY wpgconcert_date'; $results = $wpdb->get_results($query); |