Changeset 525

Show
Ignore:
Timestamp:
04/16/08 13:44:18 (8 months ago)
Author:
sidtheduck
Message:

- Removing htmlentities() function from plogger_get_picture_description() to match the plogger_get_picture_caption() function and allow html tags for descriptions and captions. If needed for Lightbox-like slideshows, users can htmlentities() the return within the theme files themselves.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/plog-functions.php

    r522 r525  
    19781978 
    19791979function plogger_get_picture_description() { 
    1980         return htmlspecialchars(SmartStripSlashes($GLOBALS["current_picture"]["description"])); 
     1980        return SmartStripSlashes($GLOBALS["current_picture"]["description"]); 
    19811981} 
    19821982