forked from mantisbt/mantisbt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
login_select_proj_page.php
86 lines (78 loc) · 2.64 KB
/
login_select_proj_page.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
# MantisBT - a php based bugtracking system
# MantisBT is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# MantisBT is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with MantisBT. If not, see <http://www.gnu.org/licenses/>.
/**
* Allows the user to select a project that is visible to him
* @package MantisBT
* @copyright Copyright (C) 2000 - 2002 Kenzaburo Ito - [email protected]
* @copyright Copyright (C) 2002 - 2013 MantisBT Team - [email protected]
* @link http://www.mantisbt.org
*/
/**
* MantisBT Core API's
*/
require_once( 'core.php' );
auth_ensure_user_authenticated();
$f_ref = string_sanitize_url( gpc_get_string( 'ref', '' ) );
if ( count( current_user_get_accessible_projects() ) == 1) {
$t_project_ids = current_user_get_accessible_projects();
$t_project_id = (int) $t_project_ids[0];
if ( count( current_user_get_accessible_subprojects( $t_project_id ) ) == 0 ) {
$t_ref_urlencoded = string_url( $f_ref );
print_header_redirect( "set_project.php?project_id=$t_project_id&ref=$t_ref_urlencoded", true);
/* print_header_redirect terminates script execution */
}
}
html_page_top( lang_get( 'select_project_button' ) );
?>
<!-- Project Select Form BEGIN -->
<br />
<div align="center">
<form method="post" action="set_project.php">
<?php # CSRF protection not required here - form does not result in modifications ?>
<table class="width50" cellspacing="1">
<tr>
<td class="form-title" colspan="2">
<input type="hidden" name="ref" value="<?php echo string_html_specialchars( $f_ref ) ?>" />
<?php echo lang_get( 'select_project_button' ) ?>
</td>
</tr>
<tr class="row-1">
<td class="category" width="40%">
<?php echo lang_get( 'choose_project' ) ?>
</td>
<td width="60%">
<select name="project_id">
<?php print_project_option_list( ALL_PROJECTS, false, null, true ) ?>
</select>
</td>
</tr>
<tr class="row-2">
<td class="category">
<?php echo lang_get( 'make_default' ) ?>
</td>
<td>
<input type="checkbox" name="make_default" />
</td>
</tr>
<tr>
<td class="center" colspan="2">
<input type="submit" class="button" value="<?php echo lang_get( 'select_project_button') ?>" />
</td>
</tr>
</table>
</form>
</div>
<?php
html_page_bottom();