diff options
-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); } |