summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2022-03-10 21:29:38 +0100
committerHarald Eilertsen <haraldei@anduin.net>2022-03-10 21:29:38 +0100
commita5198af622cdab6a4b42723f3a4eb7b0681de054 (patch)
treec7f36412e419f82051c268651aa8ce30b0871801
parent8fcc9b883477201922a082f0ee992ca13e2f6c48 (diff)
downloadgigologadmin-a5198af622cdab6a4b42723f3a4eb7b0681de054.tar.gz
gigologadmin-a5198af622cdab6a4b42723f3a4eb7b0681de054.tar.bz2
gigologadmin-a5198af622cdab6a4b42723f3a4eb7b0681de054.zip
Drop some unused variables from the admin page update.
-rw-r--r--includes/admin/views/giglog_admin_page.php7
1 files changed, 0 insertions, 7 deletions
diff --git a/includes/admin/views/giglog_admin_page.php b/includes/admin/views/giglog_admin_page.php
index 8d210bf..c8e9250 100644
--- a/includes/admin/views/giglog_admin_page.php
+++ b/includes/admin/views/giglog_admin_page.php
@@ -72,13 +72,6 @@ if ( !class_exists( 'GiglogAdmin_AdminPage' ) ) {
if ('POST' !== $_SERVER['REQUEST_METHOD'])
return;
- // Use the submitted "city" if any. Otherwise, use the default/static value.
- $cty = filter_input( INPUT_POST, 'selectcity', FILTER_SANITIZE_SPECIAL_CHARS );
- $cty = $cty ? $cty: 'ALL';
-
- $venue = filter_input( INPUT_POST, 'selectvenue', FILTER_SANITIZE_SPECIAL_CHARS );
- $venue = $venue ? $venue : '0';
-
if(isset($_POST['assignitem']))
{
$concert = GiglogAdmin_Concert::get(intval($_POST['cid']));