diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-18 01:31:22 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-18 01:31:22 +0000 |
commit | 01435072dc7d9b46bc30a3216501684a72e716a1 (patch) | |
tree | 7099a30d696c47302afea2f482e3142f9afec81a /mod/thewire/pages/thread.php | |
parent | 231ca23ea10335a03b185d60a07ae3c92e9dfd63 (diff) | |
download | elgg-01435072dc7d9b46bc30a3216501684a72e716a1.tar.gz elgg-01435072dc7d9b46bc30a3216501684a72e716a1.tar.bz2 |
Refs #3158 namespaced pages for bookmarks and thewire
git-svn-id: http://code.elgg.org/elgg/trunk@8759 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/thewire/pages/thread.php')
-rw-r--r-- | mod/thewire/pages/thread.php | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/mod/thewire/pages/thread.php b/mod/thewire/pages/thread.php deleted file mode 100644 index 8b6ee4bd0..000000000 --- a/mod/thewire/pages/thread.php +++ /dev/null @@ -1,28 +0,0 @@ -<?php
-/**
- * View conversation thread
- */
-
-$thread_id = get_input('thread_id');
-
-$title = elgg_echo('thewire:thread');
-
-elgg_push_breadcrumb(elgg_echo('thewire'), 'thewire/all');
-elgg_push_breadcrumb($title);
-
-$content = elgg_list_entities_from_metadata(array(
- "metadata_name" => "wire_thread",
- "metadata_value" => $thread_id,
- "type" => "object",
- "subtype" => "thewire",
- "limit" => 20,
-));
-
-$body = elgg_view_layout('content', array(
- 'filter' => false,
- 'content' => $content,
- 'title' => $title,
- 'buttons' => false,
-));
-
-echo elgg_view_page($title, $body);
|