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ř <mcihar@novell.com>2011-06-03 16:02:02 +0400
committerMichal Čihař <mcihar@novell.com>2011-06-03 16:04:29 +0400
commitbbbf2c49ed922c73f24b8e9c9c01c0721893cd07 (patch)
tree4a7fdbb99cd6f195fadcc2f3103ddf3698af1479 /pmd_relation_new.php
parent4841ee9d5f9926187b0eb8b23e6dd87af2daeab4 (diff)
Drop $GLOBALS['charset'].
It was anyway always set to utf-8 so it does not make sense to keep it as a variable.
Diffstat (limited to 'pmd_relation_new.php')
-rw-r--r--pmd_relation_new.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/pmd_relation_new.php b/pmd_relation_new.php
index 6ea4485d66..da92e9727a 100644
--- a/pmd_relation_new.php
+++ b/pmd_relation_new.php
@@ -91,7 +91,7 @@ if (PMA_foreignkey_supported($type_T1) && PMA_foreignkey_supported($type_T2) &&
function PMD_return_new($b,$ret)
{
global $db,$T1,$F1,$T2,$F2;
- header("Content-Type: text/xml; charset=utf-8");//utf-8 .$_GLOBALS['charset']
+ header("Content-Type: text/xml; charset=utf-8");
header("Cache-Control: no-cache");
die('<root act="relation_new" return="'.$ret.'" b="'.$b.
'" DB1="'.urlencode($db).