Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
5b9d0e0249
@ -44,6 +44,7 @@ phpMyAdmin - ChangeLog
|
||||
- bug #4743 Unable to move cursor with keyboard in filter rows box
|
||||
- bug Incorrect link in doc
|
||||
- bug #4745 Tracking does not handle views properly
|
||||
- bug #4706 Schema export doesn't handle dots in db/table name
|
||||
|
||||
4.3.8.0 (2015-01-24)
|
||||
- bug Undefined constant PMA_DRIZZLE
|
||||
|
||||
@ -240,9 +240,9 @@ class PMA_Export_Relation_Schema
|
||||
protected function getTablesFromRequest()
|
||||
{
|
||||
$tables = array();
|
||||
$dbLength = mb_strlen($GLOBALS['db']);
|
||||
foreach ($_REQUEST['t_h'] as $key => $value) {
|
||||
list(, $table) = explode(".", $key);
|
||||
$tables[] = $table;
|
||||
$tables[] = mb_substr($key, $dbLength + 1);
|
||||
}
|
||||
return $tables;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user