Merge remote-tracking branch 'origin/master'

This commit is contained in:
Weblate 2015-02-04 10:49:17 +01:00
commit 5b9d0e0249
2 changed files with 3 additions and 2 deletions

View File

@ -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

View File

@ -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;
}