Backend for songs.zachdecook.com
Diffstat (limited to 'laravel/public/song.gmi.php')
| -rwxr-xr-x | laravel/public/song.gmi.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/laravel/public/song.gmi.php b/laravel/public/song.gmi.php index d234195..cbe7d5e 100755 --- a/laravel/public/song.gmi.php +++ b/laravel/public/song.gmi.php @@ -28,7 +28,7 @@ printf("30 " . Song::inRandomOrder()->first()->id . "\r\n");return; <?= $song->audio ? "=> {$song->audio} Listen to this song" : "" ?> ```chord sheet -<?= $txt = $song->textTranspose(getenv('QUERY_STRING')??'') ?> +<?= $txt = $song->textTranspose(ucfirst(getenv('QUERY_STRING')??'')) ?> ``` <?php foreach($song->getChordsAttribute($txt) as $symbol => $tabs): ?> |