Skip to content

Commit

Permalink
added manager support
Browse files Browse the repository at this point in the history
git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@175 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
Kenzaburo Ito committed Feb 10, 2001
1 parent 71b3e54 commit 409194d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 12 deletions.
6 changes: 1 addition & 5 deletions manage_create_user_page.php3
Expand Up @@ -77,11 +77,7 @@
</td>
<td>
<select name=f_access_level>
<option value="viewer">viewer
<option value="reporter" SELECTED>reporter
<option value="updater">updater
<option value="developer">developer
<option value="administrator">administrator
<? print_table_field_option_list( $g_mantis_user_table, "access_level", "reporter" ) ?>
</select>
</td>
</tr>
Expand Down
11 changes: 4 additions & 7 deletions manage_user_page.php3
Expand Up @@ -70,11 +70,7 @@
</td>
<td colspan=2>
<select name=f_access_level>
<option value="viewer" <? if ( $u_access_level=="viewer" ) echo "SELECTED" ?>>viewer
<option value="reporter" <? if ( $u_access_level=="reporter" ) echo "SELECTED" ?>>reporter
<option value="updater" <? if ( $u_access_level=="updater" ) echo "SELECTED" ?>>updater
<option value="developer" <? if ( $u_access_level=="developer" ) echo "SELECTED" ?>>developer
<option value="administrator" <? if ( $u_access_level=="administrator" ) echo "SELECTED" ?>>administrator
<? print_table_field_option_list( $g_mantis_user_table, "access_level", $u_access_level ) ?>
</select>
</td>
</tr>
Expand Down Expand Up @@ -125,6 +121,7 @@
<? echo $s_reset_password_msg ?>
</div>

<!--
<p>
<div align=center>
<table width=50% bgcolor=<? echo $g_primary_border_color." ".$g_primary_table_tags ?>>
Expand All @@ -136,7 +133,7 @@
<b>Projects</b>
</td>
</tr>
<?
<?
$query = "SELECT p.name, u.name
FROM
WHERE u.id=";
Expand All @@ -159,7 +156,7 @@
</td>
</tr>
</table>
</div>
</div>-->

<? print_footer(__FILE__) ?>
<? print_body_bottom() ?>
Expand Down

0 comments on commit 409194d

Please sign in to comment.