diff options
| author | Zach DeCook <zachdecook@librem.one> | 2025-02-06 17:28:41 +0000 |
|---|---|---|
| committer | Zach DeCook <zachdecook@librem.one> | 2025-02-06 17:28:41 +0000 |
| commit | 560709393614983cb2858815e9897cb781bdbef5 (patch) | |
| tree | 5c6241993bdc7595d75b20ca7cbe2bbdf9fe57cf /laravel/public/song.gmi.php | |
| parent | 9e8949e73ea94e40d84cc83e2cacf2f08a6bd11f (diff) | |
| download | prosongsa-560709393614983cb2858815e9897cb781bdbef5.tar.gz | |
Improve transposition
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): ?> |
