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-05-24 00:25:48 +0400
committerRouslan Placella <rouslan@placella.com>2012-06-11 17:06:02 +0400
commit4a740376c89755698ae5fac3746eb57ba07142ae (patch)
treeb33aa2a42117a87d24f145080d3f9a8887a0e21e /import.php
parent97449dae42a11cfa7f4571aaadeab3fefc30acf7 (diff)
Dropped header.inc.php in favor of the PMA_Header class
Diffstat (limited to 'import.php')
-rw-r--r--import.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/import.php b/import.php
index 1c93cc119f..f801c9bbde 100644
--- a/import.php
+++ b/import.php
@@ -83,7 +83,7 @@ if (! empty($sql_query)) {
// upload limit has been reached, let's assume the second possibility.
;
if ($_POST == array() && $_GET == array()) {
- include_once 'libraries/header.inc.php';
+ PMA_Header::getInstance()->display();
$message = PMA_Message::error(__('You probably tried to upload too large file. Please refer to %sdocumentation%s for ways to workaround this limit.'));
$message->addParam('[a@./Documentation.html#faq1_16@_blank]');
$message->addParam('[/a]');