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:
authorMadhura Jayaratne <madhura.cj@gmail.com>2011-09-23 09:26:30 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2011-09-23 09:26:30 +0400
commit9bcb83af03d9f988a2e2c754e6b9b3cf2c468555 (patch)
treeb5f9e6f0ab0627ac6834b2cfe6ecd53a785d3aa8 /querywindow.php
parente67a0a2531fff325477c5babcfffbf205ca755b3 (diff)
File is being conditionally included; use "include" instead
Diffstat (limited to 'querywindow.php')
-rw-r--r--querywindow.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/querywindow.php b/querywindow.php
index 5641d1cc29..7a9f83d5e8 100644
--- a/querywindow.php
+++ b/querywindow.php
@@ -95,11 +95,11 @@ if ($no_js) {
// ... we redirect to appropriate query sql page
// works only full if $db and $table is also stored/grabbed from $_COOKIE
if (strlen($table)) {
- require './tbl_sql.php';
+ include './tbl_sql.php';
} elseif (strlen($db)) {
- require './db_sql.php';
+ include './db_sql.php';
} else {
- require './server_sql.php';
+ include './server_sql.php';
}
exit;
}