diff --git a/ext/source_history/theme.php b/ext/source_history/theme.php
index 8b0475c1..27ea3856 100644
--- a/ext/source_history/theme.php
+++ b/ext/source_history/theme.php
@@ -23,6 +23,7 @@ class Source_HistoryTheme extends Themelet {
$current_id = $fields['id'];
$current_source = html_escape($fields['source']);
$name = $fields['name'];
+ $date_set = autodate($fields['date_set']);
$h_ip = $user->can("view_ip") ? " ".show_ip($fields['user_ip'], "Sourcing Image #$image_id as '$current_source'") : "";
$setter = "".html_escape($name)."$h_ip";
@@ -31,7 +32,11 @@ class Source_HistoryTheme extends Themelet {
$history_list .= "
-
+
";
}
diff --git a/ext/tag_history/theme.php b/ext/tag_history/theme.php
index abb48b26..db824d53 100644
--- a/ext/tag_history/theme.php
+++ b/ext/tag_history/theme.php
@@ -28,6 +28,7 @@ class Tag_HistoryTheme extends Themelet {
$current_id = $fields['id'];
$current_tags = html_escape($fields['tags']);
$name = $fields['name'];
+ $date_set = autodate($fields['date_set']);
$h_ip = $user->can("view_ip") ? " ".show_ip($fields['user_ip'], "Tagging Image #$image_id as '$current_tags'") : "";
$setter = "".html_escape($name)."$h_ip";
@@ -43,7 +44,11 @@ class Tag_HistoryTheme extends Themelet {
$history_list .= "
-
+
";
}