diff options
author | Chris Smith <chris@jalakai.co.uk> | 2007-08-21 14:09:16 +0200 |
---|---|---|
committer | Chris Smith <chris@jalakai.co.uk> | 2007-08-21 14:09:16 +0200 |
commit | ee1dcd2c4fe69572ca679e6bf6e14b4e8d272131 (patch) | |
tree | e80b2aa174e767859484e82f65ba354f9038c10d | |
parent | 1ba60149a86e0315c46451bbab09f40c251b2649 (diff) | |
download | rpg-ee1dcd2c4fe69572ca679e6bf6e14b4e8d272131.tar.gz rpg-ee1dcd2c4fe69572ca679e6bf6e14b4e8d272131.tar.bz2 |
Fix $conf['compression'] setting values (was using 'bzip' instead of 'bz2'); FS#1185
darcs-hash:20070821120916-d26fc-75fbdf68d2a31222b892106229ee84c12c504630.gz
-rw-r--r-- | lib/plugins/config/settings/extra.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plugins/config/settings/extra.class.php b/lib/plugins/config/settings/extra.class.php index 42cbe64f8..8e1e49acb 100644 --- a/lib/plugins/config/settings/extra.class.php +++ b/lib/plugins/config/settings/extra.class.php @@ -108,7 +108,7 @@ if (!class_exists('setting_compression')) { // populate _choices with the compression methods supported by this php installation if (function_exists('gzopen')) $this->_choices[] = 'gz'; - if (function_exists('bzopen')) $this->_choices[] = 'bzip'; + if (function_exists('bzopen')) $this->_choices[] = 'bz2'; parent::initialize($default,$local,$protected); } |