[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_5, updated. RELEASE_3_5_0BETA1-257-gd4eaf57

The branch, QA_3_5 has been updated via d4eaf57b88584d0b863b44a50b849014c6d18afc (commit) from 8cef483dfe3452b235f0f18a398b4060f1db39a2 (commit) - Log ----------------------------------------------------------------- commit d4eaf57b88584d0b863b44a50b849014c6d18afc Author: Michal Čihař <mcihar@suse.cz> Date: Fri Jan 27 14:16:09 2012 +0100 Prevent warnings from ini_set ----------------------------------------------------------------------- Summary of changes: test/classes/PMA_Config_test.php | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/classes/PMA_Config_test.php b/test/classes/PMA_Config_test.php index 991765a..3e48383 100644 --- a/test/classes/PMA_Config_test.php +++ b/test/classes/PMA_Config_test.php @@ -69,11 +69,11 @@ class PMA_ConfigTest extends PHPUnit_Framework_TestCase $this->object->checkOutputCompression(); $this->assertEquals('auto', $this->object->get("OBGzip")); - ini_set('zlib.output_compression', 'Off'); + @ini_set('zlib.output_compression', 'Off'); $this->object->checkOutputCompression(); $this->assertFalse($this->object->get("OBGzip")); - ini_set('zlib.output_compression', 'On'); + @ini_set('zlib.output_compression', 'On'); } public function testCheckClient() hooks/post-receive -- phpMyAdmin
participants (1)
-
Michal Čihař