diff options
Diffstat (limited to 'includes')
-rw-r--r-- | includes/admin/views/giglog_admin_page.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/admin/views/giglog_admin_page.php b/includes/admin/views/giglog_admin_page.php index c00284b..88c7fa2 100644 --- a/includes/admin/views/giglog_admin_page.php +++ b/includes/admin/views/giglog_admin_page.php @@ -56,7 +56,7 @@ if ( !class_exists( 'GiglogAdmin_AdminPage' ) ) { <?php //currnet comment and above form can be removed once we decide how to...form. The form is meant to allow adding single concerts or editing one in the table. } static function get_allvenues() - { $select .= '<select name="selectvenue">'; + { $select = '<select name="selectvenue">'; foreach ( GiglogAdmin_Venue::all_venues() AS $venue ) { $select .= '<option value="' . $venue -> id. '">'.$venue->vname; @@ -69,7 +69,7 @@ if ( !class_exists( 'GiglogAdmin_AdminPage' ) ) { static function get_allbands() { - $select .= '<select name="selectband">'; + $select = '<select name="selectband">'; foreach ( GiglogAdmin_Band::all_bands() AS $band ) { |