summaryrefslogtreecommitdiff
path: root/modules/image_block
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-10-28 12:15:52 -0700
committerTim Almdal <tnalmdal@shaw.ca>2009-10-28 12:15:52 -0700
commit7ea13b3869dee33804606a17488bb1cd26759bdb (patch)
tree39c98eb3b788e528003730894a3f897a579a3808 /modules/image_block
parent8ef78de3f72f695225ac87223d0815235a630417 (diff)
Normalize capitalization ticket #596
Diffstat (limited to 'modules/image_block')
-rw-r--r--modules/image_block/helpers/image_block_block.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/image_block/helpers/image_block_block.php b/modules/image_block/helpers/image_block_block.php
index eb4f7aab..79bd92ba 100644
--- a/modules/image_block/helpers/image_block_block.php
+++ b/modules/image_block/helpers/image_block_block.php
@@ -19,7 +19,7 @@
*/
class image_block_block_Core {
static function get_site_list() {
- return array("random_image" => t("Random Image"));
+ return array("random_image" => t("Random image"));
}
static function get($block_id, $theme) {
@@ -28,7 +28,7 @@ class image_block_block_Core {
case "random_image":
$block = new Block();
$block->css_id = "g-image-block";
- $block->title = t("Random Image");
+ $block->title = t("Random image");
$block->content = new View("image_block_block.html");
$random = ((float)mt_rand()) / (float)mt_getrandmax();