diff options
Diffstat (limited to 'modules/info/helpers/info_block.php')
-rw-r--r-- | modules/info/helpers/info_block.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/info/helpers/info_block.php b/modules/info/helpers/info_block.php index f4fe5a6e..f3c8cf65 100644 --- a/modules/info/helpers/info_block.php +++ b/modules/info/helpers/info_block.php @@ -75,7 +75,7 @@ class info_block_Core { if (($theme->item->width && $theme->item->height) && module::get_var("info", "show_size")) { $info["size"] = array( "label" => t("Size:"), - "value" => $theme->item->width . " x " . $theme->item->height + "value" => t("%width x %height", array("width" => $theme->item->width, "height" => $theme->item->height)) ); } |