diff options
author | jamaa <jamaa@mzibo.net> | 2013-06-13 00:00:13 +0200 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2013-06-12 19:10:02 -0400 |
commit | 2d2503680ec3cd90d07a871a71a8e6d2f21c6c3d (patch) | |
tree | 24b66cab056bc0c7aa5893ab0df895cd5a05eeae /modules/info/helpers/info_block.php | |
parent | 8b14cc5a78ca7cd86ead250916f3437af7bf77af (diff) |
change "size" to "dimensions" and display unit "px"
Diffstat (limited to 'modules/info/helpers/info_block.php')
-rw-r--r-- | modules/info/helpers/info_block.php | 6 |
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)) ); } |