Skip to content

Commit

Permalink
Fix #2953: View all bugs page empty
Browse files Browse the repository at this point in the history
- This problem only occurs under IIS and with compression ON, for now
we will automatically disable compression when running on an IIS server.


git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@1989 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
vboctor committed Feb 22, 2003
1 parent f27faa8 commit 9a2b169
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 3 additions & 2 deletions core/compress_api.php
Expand Up @@ -6,7 +6,7 @@
# See the README and LICENSE files for details

# --------------------------------------------------------
# $Id: compress_api.php,v 1.8 2003-02-17 01:50:09 jfitzell Exp $
# $Id: compress_api.php,v 1.9 2003-02-22 13:29:47 vboctor Exp $
# --------------------------------------------------------

###########################################################################
Expand All @@ -25,7 +25,8 @@ function compress_is_enabled() {
global $g_compression_started;

return ( $g_compression_started &&
ON == config_get( 'compress_html' ) );
ON == config_get( 'compress_html' ) &&
OFF == config_get( 'use_iis' ) );
}

# ----------------
Expand Down
1 change: 1 addition & 0 deletions doc/ChangeLog
Expand Up @@ -11,6 +11,7 @@ Mantis ChangeLog
* Fix: Improve speed of actions that trigger email sends by reducing the number of queries by 200x (20,000%). Queries when sending emails are now linear to the number of users receiving the email instead of the number of users in the system.
* Fix #2944: Project files are not deleted when project is deleted.
* Fix #2939: Confusing file names for uploaded project documents.
* Fix #2953: View all bugs page empty (temporary fix by disabling compression when running on an IIS server).
* Fix #2954: Bgcolor attribute on TD in view_all_bug_page (moved to TR) [optimisation]
* Fix #2956: db_insert_id() did not use mysql_insert_id(), but executed another query (which is probably slower)
* Fix #2961: A disabled project can not be the currently selected project
Expand Down

0 comments on commit 9a2b169

Please sign in to comment.