Merge branch 'QA_4_8'
Signed-off-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
commit
3d28438949
@ -28,6 +28,11 @@ phpMyAdmin - ChangeLog
|
||||
|
||||
4.8.5 (not yet released)
|
||||
|
||||
4.8.4.1 (not yet released)
|
||||
- issue #14794 Not responding to click, frozen interface, plugin Text_Plain_Sql error
|
||||
- issue #14786 Table level Operations functions missing
|
||||
- issue #14791 PHP warning, db_export.php#L91 urldecode()
|
||||
|
||||
4.8.4 (2018-12-11)
|
||||
- issue #14452 Remove hash param in edit query URL
|
||||
- issue #14295 Issue in Changing theme
|
||||
|
||||
@ -88,15 +88,6 @@ if (!empty($_POST['selected_tbl']) && empty($table_select)) {
|
||||
$table_select = $_POST['selected_tbl'];
|
||||
}
|
||||
|
||||
// Check if the selected tables are defined in $_POST
|
||||
// (from clicking Back button on export.php)
|
||||
foreach (['table_select', 'table_structure', 'table_data'] as $one_key) {
|
||||
if (isset($_POST[$one_key])) {
|
||||
$_POST[$one_key] = urldecode($_POST[$one_key]);
|
||||
$_POST[$one_key] = explode(",", $_POST[$one_key]);
|
||||
}
|
||||
}
|
||||
|
||||
foreach ($tables as $each_table) {
|
||||
if (isset($_POST['table_select']) && is_array($_POST['table_select'])) {
|
||||
$is_checked = $export->getCheckedClause(
|
||||
|
||||
@ -153,7 +153,7 @@ class Language
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks whether langauge is RTL
|
||||
* Checks whether language is RTL
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
|
||||
@ -34,7 +34,7 @@ class Text_Plain_Sql extends SQLTransformationsPlugin
|
||||
$scripts->addFile('vendor/codemirror/lib/codemirror.js');
|
||||
$scripts->addFile('vendor/codemirror/mode/sql/sql.js');
|
||||
$scripts->addFile('vendor/codemirror/addon/runmode/runmode.js');
|
||||
$scripts->addFile('function.js');
|
||||
$scripts->addFile('functions.js');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -192,7 +192,7 @@ class StorageEngine
|
||||
*/
|
||||
public static function getEngine($engine)
|
||||
{
|
||||
switch (strtolower($engine)) {
|
||||
switch (mb_strtolower($engine)) {
|
||||
case 'bdb':
|
||||
return new Bdb($engine);
|
||||
case 'berkeleydb':
|
||||
|
||||
Loading…
Reference in New Issue
Block a user