diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-02-27 13:44:19 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-02-27 13:44:19 +0000 |
commit | c4cdecc05f128bac3842852f114b96eaa821f2ca (patch) | |
tree | b9172694cbd8730ceebad10a7b3f4b9d5fa4e3da | |
parent | 3193c19ca92a2c8dea0479edeb59bc33674977a1 (diff) |
1) Change the image block so it has the correct url in the anchor tag.
2) Change the wrapping class to gImageBlock instead of gImage so the
quick kinks aren't enabled
-rw-r--r-- | modules/image_block/views/image_block_block.html.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/image_block/views/image_block_block.html.php b/modules/image_block/views/image_block_block.html.php index 87afe4da..0ba9915e 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="gItem"> - <a href="<?= $item->thumb_url() ?>"> +<div class="gImageBlock"> + <a href="<?= $item->url() ?>"> <?= $item->thumb_tag(array("class" => "gThumbnail")) ?> </a> </div> |