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:
authorRouslan Placella <rouslan@placella.com>2012-06-01 19:12:00 +0400
committerRouslan Placella <rouslan@placella.com>2012-06-11 17:06:03 +0400
commita05456210029c8ba09db1eb765bcb116c449c746 (patch)
treeeb9beb55a6569298b9309b38a50823094e15ce78 /transformation_wrapper.php
parentc2ae2ae265cade8b671acbd70073bbc22b61ee17 (diff)
PMA_Footer and PMA_Header no longer need to be singletons
Diffstat (limited to 'transformation_wrapper.php')
-rw-r--r--transformation_wrapper.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/transformation_wrapper.php b/transformation_wrapper.php
index 317ff3875b..ab1625c234 100644
--- a/transformation_wrapper.php
+++ b/transformation_wrapper.php
@@ -85,7 +85,8 @@ if ($cfgRelation['commwork'] && $cfgRelation['mimework']) {
}
// Only output the http headers
-PMA_Header::getInstance()->sendHttpHeaders();
+$response = PMA_Response::getInstance();
+$response->getHeader()->sendHttpHeaders();
// [MIME]
if (isset($ct) && !empty($ct)) {