View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0004425 | mantisbt | bugtracker | public | 2004-08-29 02:54 | 2004-09-12 08:28 |
| Reporter | vboctor | Assigned To | vboctor | ||
| Priority | high | Severity | major | Reproducibility | sometimes |
| Status | closed | Resolution | fixed | ||
| Product Version | 0.19.0rc1 | ||||
| Fixed in Version | 0.19.0 | ||||
| Summary | 0004425: Action group page exceeds max execution time | ||||
| Description | When applying actions that triggers sending of email notifications on several issues, the page usually expires. Fatal error: Maximum execution time of 30 seconds exceeded in /usr/local/httpd/vservers/htdocs/mantisbt.org/mantis/core/string_api.php on line 295 | ||||
| Tags | No tags attached. | ||||
| Attached Files | action_group_time_limit.diff (542 bytes)
Index: bug_actiongroup.php =================================================================== RCS file: /cvsroot/mantisbt/mantisbt/bug_actiongroup.php,v retrieving revision 1.36 diff -u -r1.36 bug_actiongroup.php --- bug_actiongroup.php 24 Aug 2004 13:30:19 -0000 1.36 +++ bug_actiongroup.php 29 Aug 2004 07:58:40 -0000 @@ -21,6 +21,8 @@ ?> <?php auth_ensure_user_authenticated() ?> <?php + helper_begin_long_process(); + $f_action = gpc_get_string( 'action' ); $f_bug_arr = gpc_get_int_array( 'bug_arr', array() ); | ||||