diff --git a/e107_handlers/theme_handler.php b/e107_handlers/theme_handler.php
index 2514d7264..cc1d5391d 100644
--- a/e107_handlers/theme_handler.php
+++ b/e107_handlers/theme_handler.php
@@ -1216,7 +1216,7 @@ class themeHandler
".TPVLAN_11." |
".$theme['version']." |
- ".$thumbnail." |
+ ".$thumbnail." |
";
$text .= "".LAN_AUTHOR.": | ".$author." |
";
@@ -1225,7 +1225,9 @@ class themeHandler
$text .= "".TPVLAN_7.": | ".strip_tags($theme['info'],'b')." |
";
$text .= "".LAN_CATEGORY.": | ".$theme['category']." |
";
- // $text .= "Price: | ".$price." |
";
+ $text .= "".LAN_FOLDER.": | ".$theme['path']." |
";
+
+ // $text .= "Price: | ".$price." |
";
$text .= "".TPVLAN_49.": |
";
$text .= ($theme['xhtmlcompliant']) ? "W3C XHTML ".$theme['xhtmlcompliant'] : TPVLAN_71;
diff --git a/e107_languages/English/admin/lan_admin.php b/e107_languages/English/admin/lan_admin.php
index 9635fd1a6..22452335d 100644
--- a/e107_languages/English/admin/lan_admin.php
+++ b/e107_languages/English/admin/lan_admin.php
@@ -425,6 +425,7 @@ define("LAN_CAPTION", "Caption");
define("LAN_LIMIT", "Limit");
define("LAN_BASIC", "Basic");
define("LAN_ADVANCED", "Advanced");
+define("LAN_FOLDER", "Folder");
// TODO - move e_form related LANS below, add new lan_form.php file (for both front/back-end)
|