If I create a new album with title "It's my car" in Latest Album I see "It's my car" How I can fix this? Thank you! ^^
Probably not the best fix in the world but it worked for me.
In photos.page.inc around line 597 change:-
$node->titlelink = l(check_plain($node->title),'node/'.$node->nid);
to:-
$node->titlelink = l($node->title,'node/'.$node->nid);
i.e. remove the check_plain().
Not sure what implications this has though, so be warned.
l() check_plains $text itself, unless $html is set to TRUE. This fix is sound.
Perfect! You are very fast! Thank you!
Automatically closed -- issue fixed for two weeks with no activity.
Please Berdir, can you add this fix in next release? Thank you!
close old issue
Comments
Comment #1
NeilPorter commentedProbably not the best fix in the world but it worked for me.
In photos.page.inc around line 597 change:-
$node->titlelink = l(check_plain($node->title),'node/'.$node->nid);
to:-
$node->titlelink = l($node->title,'node/'.$node->nid);
i.e. remove the check_plain().
Not sure what implications this has though, so be warned.
Comment #2
heine commentedl() check_plains $text itself, unless $html is set to TRUE. This fix is sound.
Comment #3
Jackl85 commentedPerfect! You are very fast!
Thank you!
Comment #5
Jackl85 commentedPlease Berdir, can you add this fix in next release? Thank you!
Comment #6
Jackl85 commentedclose old issue