From 0f987880e67c667dc1e2c47455fc9ee0859fcba7 Mon Sep 17 00:00:00 2001 From: Tim Almdal Date: Tue, 2 Jun 2009 12:08:47 -0700 Subject: Fix for ticket #320 --- modules/gallery/models/item.php | 6 +++--- modules/gallery/views/move_tree.html.php | 4 ++-- modules/image_block/views/image_block_block.html.php | 2 +- modules/organize/views/organize_thumb_grid.html.php | 2 +- modules/search/views/search.html.php | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) (limited to 'modules') diff --git a/modules/gallery/models/item.php b/modules/gallery/models/item.php index 9406f5d9..10bad0b2 100644 --- a/modules/gallery/models/item.php +++ b/modules/gallery/models/item.php @@ -395,7 +395,7 @@ class Item_Model extends ORM_MPTT { * @param boolean (optional) $center_vertically Center vertically (default: false) * @return string */ - public function thumb_tag($extra_attrs=array(), $max=null, $center_vertically=false) { + public function thumb_img($extra_attrs=array(), $max=null, $center_vertically=false) { list ($height, $width) = $this->scale_dimensions($max); if ($center_vertically && $max) { // The constant is divide by 2 to calculate the file and 10 to convert to em @@ -448,7 +448,7 @@ class Item_Model extends ORM_MPTT { * @param array $extra_attrs Extra attributes to add to the img tag * @return string */ - public function resize_tag($extra_attrs) { + public function resize_img($extra_attrs) { $attrs = array_merge($extra_attrs, array("src" => $this->resize_url(), "alt" => $this->title, @@ -464,7 +464,7 @@ class Item_Model extends ORM_MPTT { * @param array $extra_attrs * @return string */ - public function movie_tag($extra_attrs) { + public function movie_img($extra_attrs) { $attrs = array_merge($extra_attrs, array("id" => "player", "style" => "display:block;width:400px;height:300px") diff --git a/modules/gallery/views/move_tree.html.php b/modules/gallery/views/move_tree.html.php index 91a2f9da..5f70cf67 100644 --- a/modules/gallery/views/move_tree.html.php +++ b/modules/gallery/views/move_tree.html.php @@ -1,5 +1,5 @@ -thumb_tag(array(), 25); ?> +thumb_img(array(), 25); ?> is_descendant($parent)): ?> title) ?> @@ -8,7 +8,7 @@