06-21-2019, 10:02 PM
IIRC the tags were used in 5.0 but reverted in 5.1 due to some conflicts with other tags used in generating the Library Tag and Album views. View the release notes.
If you want to try a hack then see below.
In file /var/www/inc/playerlib.php, function GenLibrary() change
$libartist = $_SESSION['libartistcol'];
to
$libartist = 'ArtistSort';
If you want to try a hack then see below.
In file /var/www/inc/playerlib.php, function GenLibrary() change
$libartist = $_SESSION['libartistcol'];
to
$libartist = 'ArtistSort';
Code:
// generate library {Genre1: {Artist1: {Album1: [{song1}, {song2}], Album2:...}, Artist2:...}, Genre2:...}
function genLibrary($flat) {
$lib = array();
// use Artist or AlbumArtist for the Artist column
$libartist = $_SESSION['libartistcol'];