Update of /cvsroot/mantisbt/mantisbt/core
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4804/core
Modified Files:
html_api.php
Log Message:
Fixed #6972: Implement a Configuration Report to show all configs in database
Index: html_api.php
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/core/html_api.php,v
retrieving revision 1.188
retrieving revision 1.189
diff -u -d -r1.188 -r1.189
--- html_api.php 21 Mar 2006 13:28:31 -0000 1.188
+++ html_api.php 21 Apr 2006 13:01:25 -0000 1.189
@@ -612,7 +612,7 @@
$t_manage_user_page = 'manage_user_page.php';
$t_manage_project_menu_page = 'manage_proj_page.php';
$t_manage_custom_field_page = 'manage_custom_field_page.php';
- $t_manage_config_page = 'adm_permissions_report.php';
+ $t_manage_config_page = 'adm_config_report.php';
$t_manage_prof_menu_page = 'manage_prof_menu_page.php';
# $t_documentation_page =
'documentation_page.php';
@@ -661,12 +661,16 @@
# Print the menu for the manage configuration section
# $p_page specifies the current page name so it's link can be disabled
function print_manage_config_menu( $p_page = '' ) {
+ $t_configuration_report = 'adm_config_report.php';
$t_permissions_summary_report = 'adm_permissions_report.php';
$t_manage_work_threshold =
'manage_config_work_threshold_page.php';
$t_manage_email =
'manage_config_email_page.php';
$t_manage_workflow =
'manage_config_workflow_page.php';
switch ( $p_page ) {
+ case $t_configuration_report:
+ $t_configuration_report = '';
+ break;
case $t_permissions_summary_report:
$t_permissions_summary_report = '';
break;
@@ -683,6 +687,7 @@
PRINT '<br /><div align="center">';
if ( access_has_project_level( config_get(
'view_configuration_threshold' ) ) ) {
+ print_bracket_link( $t_configuration_report,
lang_get_defaulted( 'configuration_report' ) );
print_bracket_link( $t_permissions_summary_report,
lang_get( 'permissions_summary_report' ) );
print_bracket_link( $t_manage_work_threshold, lang_get(
'manage_threshold_config' ) );
print_bracket_link( $t_manage_workflow, lang_get(
'manage_workflow_config' ) );
-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
|