View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0012113 | mantisbt | performance | public | 2010-06-25 10:06 | 2013-02-01 18:53 |
Reporter | KarlReichert | Assigned To | dregad | ||
Priority | normal | Severity | feature | Reproducibility | N/A |
Status | closed | Resolution | no change required | ||
Product Version | 1.2.1 | ||||
Summary | 0012113: Configuration Report should be located somewhere else in the web interface | ||||
Description | Currently, the Configuration Report is located right under "Manage - Manage Configuration - Configuration Report". Because of that, when selecting "Manage - Manage Configuration", it's displayed. I have a lot of projects with a lot of per-project specific settings, which are all listed at page "Configuration Report" (because these settings are stored in the database). That's why every time my webserver needs a few seconds to generate the configuration report. So every time I want to change something in the configuration, I have to wait in between a few seconds, until the "Configuration Report" is generated, before I can go one, e.g. let's say navigating to page "Workflow Transitions". It would be nice, if another page would be the default when selecting "Manage - Manage Configuration", one that is loading much faster, no matter, how much customization is made. The "Configuration Report" should be generated only, then selecting it from a button or menue. This would speed up my work with MantisBT a lot! | ||||
Tags | No tags attached. | ||||
Attached Files | fix-12113.patch (585 bytes)
diff --git a/core/html_api.php b/core/html_api.php index 9a4a621..7590c12 100644 --- a/core/html_api.php +++ b/core/html_api.php @@ -934,7 +934,7 @@ function print_manage_menu( $p_page = '' ) { $t_manage_project_menu_page = 'manage_proj_page.php'; $t_manage_custom_field_page = 'manage_custom_field_page.php'; $t_manage_plugin_page = 'manage_plugin_page.php'; - $t_manage_config_page = 'adm_config_report.php'; + $t_manage_config_page = 'manage_config_columns_page.php'; $t_manage_prof_menu_page = 'manage_prof_menu_page.php'; $t_manage_tags_page = 'manage_tags_page.php'; | ||||