Merge remote-tracking branch 'origin/master'

This commit is contained in:
Weblate 2013-06-24 14:02:52 +02:00
commit 3f6cc59571
2 changed files with 8 additions and 0 deletions

View File

@ -27,6 +27,7 @@ phpMyAdmin - ChangeLog
- bug #3984 Cannot insert in this table (PHP < 5.4)
- bug #3989 Reloading privileges does not update the interface
- bug #3960 NavigationBarIconic config not honored
- bug #3985 Call to undefined function mb_detect_encoding
4.0.4.0 (2013-06-17)
- bug #3959 Using DefaultTabDatabase in NavigationTree for Database Click

View File

@ -94,6 +94,13 @@ require './libraries/core.lib.php';
*/
require './libraries/sanitizing.lib.php';
/**
* Warning about mbstring.
*/
if (! function_exists('mb_detect_encoding')) {
PMA_warnMissingExtension('mbstring', $fatal = true);
}
/**
* the PMA_Theme class
*/