summaryrefslogtreecommitdiff
path: root/modules/info/helpers/info_block.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules/info/helpers/info_block.php')
-rw-r--r--modules/info/helpers/info_block.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/info/helpers/info_block.php b/modules/info/helpers/info_block.php
index f3c8cf65..238b18b5 100644
--- a/modules/info/helpers/info_block.php
+++ b/modules/info/helpers/info_block.php
@@ -72,10 +72,10 @@ class info_block_Core {
);
}
}
- if (($theme->item->width && $theme->item->height) && module::get_var("info", "show_size")) {
+ if (($theme->item->width && $theme->item->height) && module::get_var("info", "show_dimensions")) {
$info["size"] = array(
- "label" => t("Size:"),
- "value" => t("%width x %height", array("width" => $theme->item->width, "height" => $theme->item->height))
+ "label" => t("Dimensions:"),
+ "value" => t("%width x %height px", array("width" => $theme->item->width, "height" => $theme->item->height))
);
}