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:
authorJo Michael <me@mynetx.net>2012-04-09 23:04:40 +0400
committerJo Michael <me@mynetx.net>2012-04-10 01:09:49 +0400
commit4130b9bc389a293da231ac0a0a02e487349f4397 (patch)
treeb463bbe0854b645ebe626f8bb560c668ac918149 /tbl_alter.php
parent3fb30b8dd4bd65f991e451ef8c0b280726daba7d (diff)
Fix PHP notices
Diffstat (limited to 'tbl_alter.php')
-rw-r--r--tbl_alter.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_alter.php b/tbl_alter.php
index 961a5a5e00..4664cd172d 100644
--- a/tbl_alter.php
+++ b/tbl_alter.php
@@ -175,7 +175,7 @@ if (isset($_REQUEST['do_save_data'])) {
* $selected comes from multi_submits.inc.php
*/
if ($abort == false) {
- if ($_REQUEST['ajax_request'] != true) {
+ if (!isset($_REQUEST['ajax_request']) || $_REQUEST['ajax_request'] != true) {
include_once 'libraries/tbl_links.inc.php';
}