From ee1dcd2c4fe69572ca679e6bf6e14b4e8d272131 Mon Sep 17 00:00:00 2001 From: Chris Smith Date: Tue, 21 Aug 2007 14:09:16 +0200 Subject: Fix $conf['compression'] setting values (was using 'bzip' instead of 'bz2'); FS#1185 darcs-hash:20070821120916-d26fc-75fbdf68d2a31222b892106229ee84c12c504630.gz --- lib/plugins/config/settings/extra.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/plugins') 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); } -- cgit v1.2.3