Skip to content

Commit

Permalink
* core/html_api.php:
Browse files Browse the repository at this point in the history
   print_account_menu() - Hide Profile management link based on access level.

* doc/Changelog:
   Added description for fix #3089.


git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2129 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
int2str committed Mar 27, 2003
1 parent 32a6e0d commit 986e0db
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions core/html_api.php
Expand Up @@ -6,7 +6,7 @@
# See the README and LICENSE files for details

# --------------------------------------------------------
# $Id: html_api.php,v 1.73 2003-03-25 09:56:31 jfitzell Exp $
# $Id: html_api.php,v 1.74 2003-03-27 00:55:25 int2str Exp $
# --------------------------------------------------------

###########################################################################
Expand Down Expand Up @@ -500,7 +500,9 @@ function print_account_menu( $p_page='' ) {

print_bracket_link( $t_account_page, lang_get( 'account_link' ) );
print_bracket_link( $t_account_prefs_page, lang_get( 'change_preferences_link' ) );
print_bracket_link( $t_account_profile_menu_page, lang_get( 'manage_profiles_link' ) );
if ( access_has_project_level( config_get( 'add_profile_threshold' ) ) ) {
print_bracket_link( $t_account_profile_menu_page, lang_get( 'manage_profiles_link' ) );
}
}

# --------------------
Expand Down
3 changes: 2 additions & 1 deletion doc/ChangeLog
Expand Up @@ -3,9 +3,10 @@ Mantis ChangeLog
2003.??.?? - 0.18.0a5

* Fix: Improved adherance to the XHTML standard.
* Fix #3072: Attached file should be opened up in a new browser window.
* Fix #3064: view bug buttons in vertical column
* Fix #3072: Attached file should be opened up in a new browser window.
* Fix #3080: project menu bar shows extra links
* Fix #3089: Hide link to Profiles management on account page based on access level.

2003.03.22 - 0.18.0a4

Expand Down

0 comments on commit 986e0db

Please sign in to comment.