summaryrefslogtreecommitdiff
path: root/modules/image_block
diff options
context:
space:
mode:
Diffstat (limited to 'modules/image_block')
-rw-r--r--modules/image_block/helpers/image_block_block.php2
-rw-r--r--modules/image_block/views/image_block_block.html.php4
2 files changed, 3 insertions, 3 deletions
diff --git a/modules/image_block/helpers/image_block_block.php b/modules/image_block/helpers/image_block_block.php
index d0402eb6..eb4f7aab 100644
--- a/modules/image_block/helpers/image_block_block.php
+++ b/modules/image_block/helpers/image_block_block.php
@@ -27,7 +27,7 @@ class image_block_block_Core {
switch ($block_id) {
case "random_image":
$block = new Block();
- $block->css_id = "gImageBlock";
+ $block->css_id = "g-image-block";
$block->title = t("Random Image");
$block->content = new View("image_block_block.html");
diff --git a/modules/image_block/views/image_block_block.html.php b/modules/image_block/views/image_block_block.html.php
index c51c1b4a..68d5fa89 100644
--- a/modules/image_block/views/image_block_block.html.php
+++ b/modules/image_block/views/image_block_block.html.php
@@ -1,6 +1,6 @@
<?php defined("SYSPATH") or die("No direct script access.") ?>
-<div class="gImageBlock">
+<div class="g-image-block">
<a href="<?= $item->url() ?>">
- <?= $item->thumb_img(array("class" => "gThumbnail")) ?>
+ <?= $item->thumb_img(array("class" => "g-thumbnail")) ?>
</a>
</div>