summaryrefslogtreecommitdiff
path: root/modules/gallery/views/move_tree.html.php
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-06-02 12:08:47 -0700
committerTim Almdal <tnalmdal@shaw.ca>2009-06-02 12:08:47 -0700
commit0f987880e67c667dc1e2c47455fc9ee0859fcba7 (patch)
treedb1f4ae2c3e8d65ddb20426b0bf28e9fa5026302 /modules/gallery/views/move_tree.html.php
parent1cfed1fac1f2aa109e96c2aa5c9f66002610b0f8 (diff)
Fix for ticket #320
Diffstat (limited to 'modules/gallery/views/move_tree.html.php')
-rw-r--r--modules/gallery/views/move_tree.html.php4
1 files changed, 2 insertions, 2 deletions
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 @@
<?php defined("SYSPATH") or die("No direct script access.") ?>
-<?= $parent->thumb_tag(array(), 25); ?>
+<?= $parent->thumb_img(array(), 25); ?>
<? if (!access::can("edit", $parent) || $source->is_descendant($parent)): ?>
<a href="javascript:load_tree('<?= $parent->id ?>',1)"> <?= p::clean($parent->title) ?> <?= t("(locked)") ?> </a>
<? else: ?>
@@ -8,7 +8,7 @@
<ul id="tree_<?= $parent->id ?>">
<? foreach ($children as $child): ?>
<li id="node_<?= $child->id ?>" class="node">
- <?= $child->thumb_tag(array(), 25); ?>
+ <?= $child->thumb_img(array(), 25); ?>
<? if (!access::can("edit", $child) || $source->is_descendant($child)): ?>
<a href="javascript:load_tree('<?= $child->id ?>',1)"> <?= p::clean($child->title) ?> <?= t("(locked)") ?></a>
<? else: ?>