summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2021-04-09 17:44:28 +0200
committerHarald Eilertsen <haraldei@anduin.net>2021-04-09 17:44:28 +0200
commitaac194d3b02c5a8e714494e97639a54667584167 (patch)
treebd59a2e434b8a349ac8bc077a92532d487e2943b
parenteb7e2ac02d652ac1ec9c842b14e1efbc27e852fc (diff)
downloadgigologadmin-aac194d3b02c5a8e714494e97639a54667584167.tar.gz
gigologadmin-aac194d3b02c5a8e714494e97639a54667584167.tar.bz2
gigologadmin-aac194d3b02c5a8e714494e97639a54667584167.zip
Fix warning in Dragon table
-rw-r--r--includes/admin/views/giglog_admin_page.php4
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 )
{