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 /main.php
parentc2ae2ae265cade8b671acbd70073bbc22b61ee17 (diff)
PMA_Footer and PMA_Header no longer need to be singletons
Diffstat (limited to 'main.php')
-rw-r--r--main.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.php b/main.php
index ff9cc6f855..6da2886067 100644
--- a/main.php
+++ b/main.php
@@ -26,7 +26,8 @@ if ($GLOBALS['PMA_Config']->isGitRevision()) {
$GLOBALS['db'] = '';
$GLOBALS['table'] = '';
$show_query = '1';
-PMA_Header::getInstance()->display();
+$response = PMA_Response::getInstance();
+$response->getHeader()->display();
// Any message to display?
if (! empty($message)) {