Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Foellmann <foellmann@foe-services.de>2015-04-08 18:08:07 +0300
committerChristian Foellmann <foellmann@foe-services.de>2015-04-08 18:08:07 +0300
commitf33ecb56244f98b81914369f3d88cc48bf5c1645 (patch)
tree824cc9f21f016c55ba23fde090daeb4a37a02ba4
parente76786da685b1d536658dea8baa988f7195c81ab (diff)
UPDATE 4.4.1.14.4.1.1
-rw-r--r--ChangeLog3
-rw-r--r--README2
-rw-r--r--libraries/Config.class.php2
-rw-r--r--libraries/OutputBuffering.class.php1
4 files changed, 5 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 5e8bf25d42..e6487201fe 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,9 @@
phpMyAdmin - ChangeLog
======================
+4.4.1.1 (2015-04-08)
+- bug #4846 Web server's error log is flooded
+
4.4.1.0 (2015-04-07)
- bug #4813 MySQL 5.7.6 and the Users menu tab
- bug #4818 MySQL 5.7.6 and changing the password for another user
diff --git a/README b/README
index f93086e9ed..c071fcb450 100644
--- a/README
+++ b/README
@@ -15,7 +15,7 @@
phpMyAdmin - Readme
===================
-Version 4.4.1
+Version 4.4.1.1
A set of PHP-scripts to manage MySQL over the web.
diff --git a/libraries/Config.class.php b/libraries/Config.class.php
index 4cef03cf59..6e98bccdcd 100644
--- a/libraries/Config.class.php
+++ b/libraries/Config.class.php
@@ -114,7 +114,7 @@ class PMA_Config
*/
function checkSystem()
{
- $this->set('PMA_VERSION', '4.4.1');
+ $this->set('PMA_VERSION', '4.4.1.1');
/**
* @deprecated
*/
diff --git a/libraries/OutputBuffering.class.php b/libraries/OutputBuffering.class.php
index 43a6f3d208..fc25f01686 100644
--- a/libraries/OutputBuffering.class.php
+++ b/libraries/OutputBuffering.class.php
@@ -46,7 +46,6 @@ class PMA_OutputBuffering
$mode = 0;
} elseif (function_exists('ob_get_level') && ob_get_level() > 0) {
// happens when php.ini's output_buffering is not Off
- error_log('clean');
ob_end_clean();
$mode = 1;
} else {