diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-31 11:18:06 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-31 11:18:06 +0000 |
commit | 63c2609889a0c310a302625233f87c274145eea8 (patch) | |
tree | 538dacca6fe247b7c247e2ef6538436904f09ca4 /mod/guidtool/views/default | |
parent | 372380c8658eace26a6f9c1a6dccca1f94edbe2e (diff) | |
download | elgg-63c2609889a0c310a302625233f87c274145eea8.tar.gz elgg-63c2609889a0c310a302625233f87c274145eea8.tar.bz2 |
Refs #494: GUID listed
git-svn-id: https://code.elgg.org/elgg/trunk@2372 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/guidtool/views/default')
-rw-r--r-- | mod/guidtool/views/default/guidtool/gallery.php | 2 | ||||
-rw-r--r-- | mod/guidtool/views/default/guidtool/listing.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mod/guidtool/views/default/guidtool/gallery.php b/mod/guidtool/views/default/guidtool/gallery.php index 440b47088..e84a753d4 100644 --- a/mod/guidtool/views/default/guidtool/gallery.php +++ b/mod/guidtool/views/default/guidtool/gallery.php @@ -16,7 +16,7 @@ $strap = $entity->title ? $entity->title : $entity->name; - $info .= "<p><b><a href=\"{$CONFIG->url}pg/guidtool/view/{$entity->guid}/\">" . get_class($entity) . " " . get_subtype_from_id($entity->subtype) . "</a></b> $strap</p>"; + $info .= "<p><b><a href=\"{$CONFIG->url}pg/guidtool/view/{$entity->guid}/\">[GUID:{$entity->guid}] " . get_class($entity) . " " . get_subtype_from_id($entity->subtype) . "</a></b> $strap</p>"; $desc = $entity->description ? substr($entity->description, 0, 100) : ""; $info .= "<p>$desc</p>"; diff --git a/mod/guidtool/views/default/guidtool/listing.php b/mod/guidtool/views/default/guidtool/listing.php index d16bd383f..0903ee929 100644 --- a/mod/guidtool/views/default/guidtool/listing.php +++ b/mod/guidtool/views/default/guidtool/listing.php @@ -22,7 +22,7 @@ ); $strap = $entity->title ? $entity->title : $entity->name; - $info .= "<p><b><a href=\"{$CONFIG->url}pg/guidtool/view/{$entity->guid}/\">" . get_class($entity) . " " . get_subtype_from_id($entity->subtype) . "</a></b> $strap</p>"; + $info .= "<p><b><a href=\"{$CONFIG->url}pg/guidtool/view/{$entity->guid}/\">[GUID:{$entity->guid}] " . get_class($entity) . " " . get_subtype_from_id($entity->subtype) . "</a></b> $strap</p>"; $info .= "<div>"; if ($by) $info .= elgg_echo('by') . " <a href=\"".$by->getURL()."\">{$by->name}</a> "; |