Plogger Support Forum - Where to insert SmartStripSlashes for album name on photo pages Thu, 28 Mar 2024 16:16:02 +0000 http://www.plogger.org/forum/ Lussumo Vanilla 1.1.10 Where to insert SmartStripSlashes for album name on photo pages http://www.plogger.org/forum/comments.php?DiscussionID=261&Focus=1310#Comment_1310 http://www.plogger.org/forum/comments.php?DiscussionID=261&Focus=1310#Comment_1310 Thu, 01 Dec 2005 15:34:30 +0000 kanjigirl
Here's my page:

http://parallaxwebdesign.com/projects/waterline/plogger/index.php?level=picture&id=54

Can someone tell me which specific code snippet in gallery.php I need to apply SmartStripSlashes to in order to get rid of the slash?

Debbie]]>
Where to insert SmartStripSlashes for album name on photo pages http://www.plogger.org/forum/comments.php?DiscussionID=261&Focus=1326#Comment_1326 http://www.plogger.org/forum/comments.php?DiscussionID=261&Focus=1326#Comment_1326 Thu, 01 Dec 2005 21:57:18 +0000 mike
There is a function that produces this line, generate_breadcrumb().
Just change everywhere you see $row["name"] to SmartStripSlashes($row["name"])

Such as line 735:
$album_name = $row["name"];
to
$album_name = SmartStripSlashes($row["name"]);]]>
Where to insert SmartStripSlashes for album name on photo pages http://www.plogger.org/forum/comments.php?DiscussionID=261&Focus=1355#Comment_1355 http://www.plogger.org/forum/comments.php?DiscussionID=261&Focus=1355#Comment_1355 Sun, 04 Dec 2005 19:33:02 +0000 kanjigirl
It had no result on the page I gave a link to above - on the Albums page (all pictures in that album) the slash is not present in breadcrumbs, but in the Pictures page (the single big picture page only) it still is.

It only shows up in the breadcrumbs where level = "picture" - it doesn't show up in the slideshow.

I then changed ALL the $row["name"] in the entire file to add SmartStripSlashes in front of it. Still no change.... have I missed something here?

Debbie]]>