diff options
author | AndreaChirulescu <andrea.chirulescu@gmail.com> | 2022-03-27 11:03:31 +0200 |
---|---|---|
committer | AndreaChirulescu <andrea.chirulescu@gmail.com> | 2022-03-27 11:03:31 +0200 |
commit | 93950454195321a58ee73c796b77f380dc9d3f64 (patch) | |
tree | d5bb18dcf62b6afb098565b8ddeb7f335909174e /includes/admin | |
parent | 1c6ac0fc1390510a0f0e12295c86e90bc313f2ef (diff) | |
download | gigologadmin-93950454195321a58ee73c796b77f380dc9d3f64.tar.gz gigologadmin-93950454195321a58ee73c796b77f380dc9d3f64.tar.bz2 gigologadmin-93950454195321a58ee73c796b77f380dc9d3f64.zip |
Filtered out concerts older than today
Concerts should show with upper case
Diffstat (limited to 'includes/admin')
-rw-r--r-- | includes/admin/views/_concerts_table.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/admin/views/_concerts_table.php b/includes/admin/views/_concerts_table.php index 45d9196..719dda5 100644 --- a/includes/admin/views/_concerts_table.php +++ b/includes/admin/views/_concerts_table.php @@ -303,7 +303,7 @@ if (!class_exists("GiglogAdmin_ConcertsTable")) $content .= "<td>" . date( 'd.M.Y', strtotime( $concert->cdate() ) ) . "</td>" - . "<td>" . esc_html($concert->cname()) . "</td>" + . "<td>" . strtoupper(esc_html($concert->cname())) . "</td>" . "<td>" . esc_html($concert->venue()->name()) . "</td>"; if( is_admin() ) { |