Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorkanjigirl
    • CommentTimeDec 1st 2005
     
    Hi -

    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
    •  
      CommentAuthormike
    • CommentTimeDec 1st 2005
     
    Based on your link I assume your talking about the breadcrumb links.

    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"]);
    • CommentAuthorkanjigirl
    • CommentTimeDec 4th 2005
     
    I changed this as directed for album names that show up in breadcrumb links.

    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