Skip to content

Commit

Permalink
BUGFIX for streaming only tier : adaptation to post-PHP 8.1 new entit…
Browse files Browse the repository at this point in the history
…y (en/de)code for single quote
  • Loading branch information
Nico committed Apr 22, 2023
1 parent 36e5c96 commit 2b1c95e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -2289,7 +2289,7 @@ function update_cart(){
}


if (!isset($_GET['track'])||$_GET['track']==$track_name)
if (!isset($_GET['track'])||$_GET['track']==html_entity_decode($track_name))
{
if (in_array(html_entity_decode($track_artist), $artists)){
?>
Expand Down

0 comments on commit 2b1c95e

Please sign in to comment.