Merge remote-tracking branch 'origin/master'

This commit is contained in:
Weblate 2014-06-13 13:45:24 +02:00
commit fe93f9e740
3 changed files with 5 additions and 0 deletions

View File

@ -22,6 +22,7 @@ phpMyAdmin - ChangeLog
- bug #4445 Fatal error on SQL Export of join query
- bug #4448 Dump binary columns in hexadecimal notation not working
- Regenerate cookie encryption IV for every session
- bug #4405 Cannot import (open_basedir): fix another case
4.2.3.0 (2014-06-08)
- bug #4423 Moving fields not working

View File

@ -374,6 +374,9 @@ if ($import_file != 'none' && ! $error) {
* system's tmp dir
*/
$tmp_subdir = ini_get('upload_tmp_dir');
if (empty($tmp_subdir)) {
$tmp_subdir = sys_get_temp_dir();
}
if (is_writable($tmp_subdir)) {

View File

@ -422,6 +422,7 @@ function confirmQuery(theForm1, sqlQuery1)
*/
function checkSqlQuery(theForm)
{
var sqlQuery;
// get the textarea element containing the query
var sqlQuery;
if (codemirror_editor) {