This fixes a minor problem with song titles that have apostrophes in them. To upgrade from 1.0, follow these instructions (
note: in step one, { imagesfolder } should not have the spaces - this is just so vb.org won't parse it):
Code:
1. In admin/functions.php, replace:
----------------------------------------
$post[nowplaying]="<br><br><img src=\"{ imagesfolder }/np.gif\" alt=\"Currently playing...\"> ".$post[npartist]." » \"".$post[npsong]."\"";
----------------------------------------
With:
----------------------------------------
$post[nowplaying]="<br><br><img src=\"{ imagesfolder }/np.gif\" alt=\"Currently playing...\"> ".stripslashes($post[npartist])." » \"".stripslashes($post[npsong])."\"";
----------------------------------------
2. In root/global.php, replace:
----------------------------------------
eval("\$nptext = \"".gettemplate("header_np")."\";");
----------------------------------------
With:
----------------------------------------
$nowplaying[song]=stripslashes($nowplaying[song]);
$nowplaying[artist]=stripslashes($nowplaying[artist]);
eval("\$nptext = \"".gettemplate("header_np")."\";");
----------------------------------------
3. In root/member.php, replace:
----------------------------------------
$membernptext=$membernowplaying[artist]." » \"".$membernowplaying[song]."\" (Began $membernpwhenstarted) ";
----------------------------------------
With:
----------------------------------------
$membernptext=stripslashes($membernowplaying[artist])." » \"".stripslashes($membernowplaying[song])."\" (Began $membernpwhenstarted) ";
----------------------------------------
4. Overwrite nowplaying.php with the one in the new zip.
Done!
New version file attached.