diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-06 12:26:06 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-06 12:26:06 +0000 |
commit | 92f9928dc58c635abd1af8d5748afedd687225d3 (patch) | |
tree | 04acf365d7d68f5e8f91bf1ab99e17725caf9658 | |
parent | 266f044aa63323e644211d5fd28d48f567bbe647 (diff) | |
download | elgg-92f9928dc58c635abd1af8d5748afedd687225d3.tar.gz elgg-92f9928dc58c635abd1af8d5748afedd687225d3.tar.bz2 |
removing unused views
git-svn-id: http://code.elgg.org/elgg/trunk@7547 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | views/default/friends/list.php | 16 | ||||
-rw-r--r-- | views/default/messages/exceptions/exception.php | 38 |
2 files changed, 0 insertions, 54 deletions
diff --git a/views/default/friends/list.php b/views/default/friends/list.php deleted file mode 100644 index 182dc2ef5..000000000 --- a/views/default/friends/list.php +++ /dev/null @@ -1,16 +0,0 @@ -<?php -/** - * Elgg friends list - * Lists a user's friends - * - * @package Elgg - * @subpackage Core - * - * @uses $vars['friends'] The array of ElggUser objects - */ - -if (is_array($vars['friends']) && sizeof($vars['friends']) > 0) { - foreach($vars['friends'] as $friend) { - echo elgg_view_entity($friend); - } -}
\ No newline at end of file diff --git a/views/default/messages/exceptions/exception.php b/views/default/messages/exceptions/exception.php deleted file mode 100644 index ecbd791e5..000000000 --- a/views/default/messages/exceptions/exception.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php -/** - * Elgg exception - * Displays a single exception - * - * @package Elgg - * @subpackage Core - * - * @uses $vars['object'] An exception - */ - -global $CONFIG; - -$class = get_class($vars['object']); -$message = elgg_view('output/longtext', array('value' => $vars['object']->getMessage())); - -$body = <<< END -<p class="messages-exception"> - <span title="$class"> - <b>$message</b> - </span> -</p> -END; - -if (isset($CONFIG->debug)) { - $details = elgg_view('output/longtext', array('value' => htmlentities(print_r($vars['object'], true), ENT_QUOTES, 'UTF-8'))); - $body .= <<< END - <hr /> - <p class="messages-exception-detail"> - $details - </p> -END; -} - -$title = $class; - -$content = elgg_view_title($title) . $body; -echo elgg_view_layout("one_column", array('content' => $content));
\ No newline at end of file |