From 3c8180095c81d4eee82ed7088b378161cee29298 Mon Sep 17 00:00:00 2001 From: cash Date: Wed, 29 Dec 2010 18:37:18 +0000 Subject: Fixes #2481 - moving tabbed_profile plugin into the plugins repo from core - it needs some updates to reflect changes to the core profile plugin git-svn-id: http://code.elgg.org/elgg/trunk@7751 36083f99-b078-4883-b0ff-0f9b5a30f544 --- .../views/default/profile/tabs/details.php | 41 ---------------------- 1 file changed, 41 deletions(-) delete mode 100755 mod/tabbed_profile/views/default/profile/tabs/details.php (limited to 'mod/tabbed_profile/views/default/profile/tabs/details.php') diff --git a/mod/tabbed_profile/views/default/profile/tabs/details.php b/mod/tabbed_profile/views/default/profile/tabs/details.php deleted file mode 100755 index 27b0f943b..000000000 --- a/mod/tabbed_profile/views/default/profile/tabs/details.php +++ /dev/null @@ -1,41 +0,0 @@ -profile) && sizeof($vars['config']->profile) > 0) { - foreach($vars['config']->profile as $shortname => $valtype) { - if ($shortname != "description") { - $value = $vars['entity']->$shortname; - if (!empty($value)) { - //This function controls the alternating class - $even_odd = ( 'odd' != $even_odd ) ? 'odd' : 'even'; - ?> -

- : - $vars['entity']->$shortname)); - ?> -

- isBanned()) { - echo "
"; - echo elgg_echo('profile:banned'); - echo "
"; - } else { - if ($vars['entity']->description) { - echo "

" . elgg_echo("profile:aboutme") . "

"; - echo "
" . elgg_view('output/longtext', array('value' => $vars['entity']->description)) . "
"; - } - } -} -- cgit v1.2.3