diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/gallery/libraries/SafeString.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gallery/libraries/SafeString.php b/modules/gallery/libraries/SafeString.php index 9a269ed4..9614a213 100644 --- a/modules/gallery/libraries/SafeString.php +++ b/modules/gallery/libraries/SafeString.php @@ -32,6 +32,7 @@ class SafeString_Core { function __construct($string) { if ($string instanceof SafeString) { $this->_is_safe_html = $string->_is_safe_html; + $this->_is_purified_html = $string->_is_purified_html; $string = $string->unescaped(); } $this->_raw_string = (string) $string; |