Hot or not fix

Just found a bug when using the "hot or not" section in the album.
When you rate a photo within the hot or not section you will find you get a message that says click here to rate another photo. When clicking that link you then get a 404 file not found.
This is because the link was not formatted correctly...so here is the fix.
OPEN album_hotornot.php
FIND -around line 282
REPLACE WITH
SAVE & CLOSE
This should then make the link work correctly. I know its a minor bug as the page does refresh and load the next picture but it may as well be fixed.
When you rate a photo within the hot or not section you will find you get a message that says click here to rate another photo. When clicking that link you then get a 404 file not found.
This is because the link was not formatted correctly...so here is the fix.
OPEN album_hotornot.php
FIND -around line 282
- Code: Select all
$message = "Your rating has been entered successfully.<br><br>To rate more pictures click <a>here</a> to do so.<br><br>" . sprintf($lang['Click_return_album_index'], "<a>", "</a>");
REPLACE WITH
- Code: Select all
$message = "Your rating has been entered successfully.<br><br>To rate more pictures click <a>here</a> to do so.<br><br>" . sprintf($lang['Click_return_album_index'], "<a>", "</a>");
SAVE & CLOSE
This should then make the link work correctly. I know its a minor bug as the page does refresh and load the next picture but it may as well be fixed.