diff options
author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-22 10:50:13 +0000 |
---|---|---|
committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-03-22 10:50:13 +0000 |
commit | c8e1a99c0388710806012eaad59e700c0667a4d1 (patch) | |
tree | 2ac4595706cc408697cfdf02801d3bb37d1c5077 /mod/profile/views | |
parent | 8cba2e15f386297a0f62c94de7fa3eaafe8a852c (diff) | |
download | elgg-c8e1a99c0388710806012eaad59e700c0667a4d1.tar.gz elgg-c8e1a99c0388710806012eaad59e700c0667a4d1.tar.bz2 |
Removed widget view from Profile.
git-svn-id: http://code.elgg.org/elgg/trunk@5465 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile/views')
-rwxr-xr-x | mod/profile/views/default/profile/profile_navigation.php | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/mod/profile/views/default/profile/profile_navigation.php b/mod/profile/views/default/profile/profile_navigation.php index 0ab00746c..b322066bf 100755 --- a/mod/profile/views/default/profile/profile_navigation.php +++ b/mod/profile/views/default/profile/profile_navigation.php @@ -7,7 +7,6 @@ if (isset($vars['section'])) { $profile = $vars['entity']; $activity = ''; -$widgets = ''; $friends = ''; $extend = ''; $twitter = ''; @@ -20,10 +19,6 @@ switch($section){ $friends = 'class="selected"'; break; - case 'widgets': - $widgets = 'class="selected"'; - break; - case 'details': $details = 'class="selected"'; break; @@ -43,7 +38,6 @@ switch($section){ <ul> <li <?php echo $activity; ?>><a href="<?php echo $url; ?>">Activity</a></li> <li <?php echo $details; ?>><a href="<?php echo $url . 'details'; ?>">Details</a></li> - <li <?php echo $widgets; ?>><a href="<?php echo $url . 'widgets'; ?>">Widgets</a></li> <li <?php echo $friends; ?>><a href="<?php echo $url . 'friends'; ?>">Friends</a></li> <?php //check to see if the twitter username is set |