Backend for songs.zachdecook.com
* Sorting: Make title sorting case insensitive
| -rw-r--r-- | sort.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -7,8 +7,8 @@ function tocKeysort( $a, $b ){ } function tocTitleSort( $a, $b ){ - $aTitle = $a['title']; - $bTitle = $b['title']; + $aTitle = strtolower($a['title']); + $bTitle = strtolower($b['title']); return strcmp( $aTitle, $bTitle ); } |