Not signed in (Sign In)

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

Please sign in or apply for membership to remove the ads
    • CommentAuthorposlanik
    • CommentTimeApr 14th 2008 edited
     
    How can I make blank rows in description fields of images? I've tried simply tapping enter, writing <br> and <br />. Is there a way?
    •  
      CommentAuthorsidtheduck
    • CommentTimeApr 14th 2008
     
    poslanik,

    Find the following function in 'plog-functions.php':
    function plogger_get_picture_description() {
    return htmlspecialchars(SmartStripSlashes($GLOBALS["current_picture"]["description"]));
    }
    change to:function plogger_get_picture_description() {
    return SmartStripSlashes($GLOBALS["current_picture"]["description"]);
    }
    • CommentAuthorposlanik
    • CommentTimeApr 15th 2008
     
    Thanks!