diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2021-04-06 09:58:32 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2021-04-06 09:58:32 +0200 |
commit | 29f46a973ce7ccc37e24d2700ad8bfdac98ec16d (patch) | |
tree | a04cb2b2bfbb8c24e85f3639c707e97f5f6dc006 /includes | |
parent | d0097bbd08e8989e5b756afa070cea84272ca2f1 (diff) | |
download | gigologadmin-29f46a973ce7ccc37e24d2700ad8bfdac98ec16d.tar.gz gigologadmin-29f46a973ce7ccc37e24d2700ad8bfdac98ec16d.tar.bz2 gigologadmin-29f46a973ce7ccc37e24d2700ad8bfdac98ec16d.zip |
Missing semicolon
Diffstat (limited to 'includes')
-rw-r--r-- | includes/public/shortcodes/giglog_photographers.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/public/shortcodes/giglog_photographers.php b/includes/public/shortcodes/giglog_photographers.php index efedc84..c26eb84 100644 --- a/includes/public/shortcodes/giglog_photographers.php +++ b/includes/public/shortcodes/giglog_photographers.php @@ -233,7 +233,7 @@ function giglogadmin_getconcertsphotog ( ) { $content .= '<tr class="assignithrow"> <th>CITY</th><th>BAND</th><th>VENUE</th><th>DATE</th><th> </th> <th>PHOTO1</th><th>PHOTO2</th><th>TEXT1</th><th>TEXT2</th> - <th>STATUS</th>' + <th>STATUS</th>'; if (current_user_can('administrator')) //($hf_username == 'etadmin') $content .= '<th>AdminButtons</th>'; $content .= '</tr>'; @@ -295,7 +295,7 @@ function giglogadmin_getconcertsphotog ( ) { $content .= '<span><form method="POST" action=""> <input type="hidden" name="cid" value="' . $row->id. '" /><input type="submit" name="reqsent" value="REQSENT"/><input type="submit" name="phok" value="PHOK"/><input type="submit" name="txtok" value="TXOK"/><input type="submit" name="allok" value="ALLOK"/><input type="submit" name="rej" value="REJ"/> </form></span>'; $content .= '</td>'; - } + } $content .= '</tr>'; $lastType = $row->wpgvenue_city; } |