diff --git a/ext/source_history/theme.php b/ext/source_history/theme.php index ec106878..306fc6f7 100644 --- a/ext/source_history/theme.php +++ b/ext/source_history/theme.php @@ -98,7 +98,7 @@ class SourceHistoryTheme extends Themelet global $user; $image_id = $fields['image_id']; $current_id = $fields['id']; - $current_source = html_escape($fields['source']); + $current_source = $fields['source']; $name = $fields['name']; $date_set = rawHTML(autodate($fields['date_set'])); $ip = $user->can(Permissions::VIEW_IP) ? diff --git a/ext/tag_history/theme.php b/ext/tag_history/theme.php index d702c2ca..f2be56f2 100644 --- a/ext/tag_history/theme.php +++ b/ext/tag_history/theme.php @@ -98,7 +98,7 @@ class TagHistoryTheme extends Themelet global $user; $image_id = $fields['image_id']; $current_id = $fields['id']; - $current_tags = html_escape($fields['tags']); + $current_tags = $fields['tags']; $name = $fields['name']; $date_set = rawHTML(autodate($fields['date_set'])); $ip = $user->can(Permissions::VIEW_IP) ?