Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <michal@cihar.com>2016-02-12 15:47:04 +0300
committerMichal Čihař <michal@cihar.com>2016-02-12 15:47:04 +0300
commit0c34cb60a03b4c429cdb29664202076da840dd53 (patch)
treefede37ff67fabe3ce0ae1d6180fe87df4bb9b2be /prefs_manage.php
parent1894e33753c7ad61b202d298e56a6f27e07c8ca8 (diff)
parent53b1f9adcc5882838161d3aa6289d93385053fbe (diff)
Merge branch 'QA_4_5' into QA_4_6
Diffstat (limited to 'prefs_manage.php')
-rw-r--r--prefs_manage.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/prefs_manage.php b/prefs_manage.php
index ab69878b16..44964e70de 100644
--- a/prefs_manage.php
+++ b/prefs_manage.php
@@ -60,7 +60,7 @@ if (isset($_POST['submit_export'])
// directory
if (!empty($open_basedir)) {
$tmp_subdir = (PMA_IS_WINDOWS ? '.\\tmp\\' : 'tmp/');
- if (is_writable($tmp_subdir)) {
+ if (@is_writable($tmp_subdir)) {
$import_file_new = tempnam($tmp_subdir, 'prefs');
if (move_uploaded_file($import_file, $import_file_new)) {
$import_file = $import_file_new;