diff --git a/e107_core/shortcodes/single/email_item.sc b/e107_core/shortcodes/single/email_item.sc
index 52754bfd3..ed82b8f13 100644
--- a/e107_core/shortcodes/single/email_item.sc
+++ b/e107_core/shortcodes/single/email_item.sc
@@ -1,16 +1,27 @@
+//";
+}
+elseif (defined("ICONMAIL") && file_exists(THEME."images/".ICONMAIL))
{
$icon = THEME_ABS."images/".ICONMAIL;
+ $img = "
";
}
else
{
$icon = e_IMAGE_ABS."generic/email.png";
+ $img = "
";
}
-$parms = explode("^",$parm);
+
// message^source^other_parms
-return "
";
+return "".$img."";
diff --git a/e107_core/shortcodes/single/print_item.sc b/e107_core/shortcodes/single/print_item.sc
index ba4b4b307..80f03ad6b 100644
--- a/e107_core/shortcodes/single/print_item.sc
+++ b/e107_core/shortcodes/single/print_item.sc
@@ -1,12 +1,23 @@
+//";
+}
+elseif (defined("ICONPRINT") && file_exists(THEME."images/".ICONPRINT))
{
$icon = THEME_ABS."images/".ICONPRINT;
+ $img = "
";
}
else
{
$icon = e_IMAGE_ABS."generic/printer.png";
+ $img = "
";
}
-$parms = explode("^",$parm);
-return "
";
\ No newline at end of file
+
+
+
+return "".$img."";
\ No newline at end of file