aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2009-08-25 23:39:11 +0000
committerCash Costello <cash.costello@gmail.com>2009-08-25 23:39:11 +0000
commit97dcaaf23678191658df97930eca0360e1e555e7 (patch)
treec4acddc51e4ffb32e52b09a03c350b003fe70508
parent80f157be88b2038bd7311e530f239c570af88709 (diff)
downloadelgg-97dcaaf23678191658df97930eca0360e1e555e7.tar.gz
elgg-97dcaaf23678191658df97930eca0360e1e555e7.tar.bz2
minor documentation edits
-rw-r--r--views/default/annotation/annotate.php6
-rw-r--r--views/default/object/image.php2
2 files changed, 6 insertions, 2 deletions
diff --git a/views/default/annotation/annotate.php b/views/default/annotation/annotate.php
index 03dd097d8..c0fb05d3a 100644
--- a/views/default/annotation/annotate.php
+++ b/views/default/annotation/annotate.php
@@ -1,6 +1,10 @@
<?php
- $performed_by = get_entity($vars['item']->subject_guid); // $statement->getSubject();
+ /*
+ * Overriding core view to work around bug dealing with empty titles
+ */
+
+ $performed_by = get_entity($vars['item']->subject_guid);
$object = get_entity($vars['item']->object_guid);
$url = $object->getURL();
$subtype = get_subtype_from_id($object->subtype);
diff --git a/views/default/object/image.php b/views/default/object/image.php
index 3b7917223..025f37d40 100644
--- a/views/default/object/image.php
+++ b/views/default/object/image.php
@@ -183,7 +183,7 @@
'album' => $album, ) );
echo '</ul></div>';
- // tagging code
+ // tagging code - photo tags on images, photo tag listing and hidden divs used in tagging
if (get_plugin_setting('tagging', 'tidypics') != "disabled") {
echo elgg_view('tidypics/tagging', array( 'image' => $image,
'viewer' => $viewer,