From 8fa03264e408e71f69f13aeb4d1b2aed74a528bd Mon Sep 17 00:00:00 2001 From: lorilee Date: Sat, 14 Aug 2010 15:14:45 -0700 Subject: [PATCH] Added comments --- db_export.php | 1 + enum_editor.php | 22 +++++++++++++++------- libraries/display_export.lib.php | 1 + server_export.php | 1 + 4 files changed, 18 insertions(+), 7 deletions(-) diff --git a/db_export.php b/db_export.php index 9eb738512..a24ed18d7 100644 --- a/db_export.php +++ b/db_export.php @@ -52,6 +52,7 @@ if (!empty($selected_tbl) && empty($table_select)) { $table_select = $selected_tbl; } +// Check if the selected tables are defined in $_GET (from clicking Back button on export.php) if(isset($_GET['table_select'])) { $_GET['table_select'] = urldecode($_GET['table_select']); $_GET['table_select'] = explode(",", $_GET['table_select']); diff --git a/enum_editor.php b/enum_editor.php index ad2c28fec..f7397ea0e 100644 --- a/enum_editor.php +++ b/enum_editor.php @@ -1,6 +1,14 @@ @@ -15,16 +23,16 @@ require_once './libraries/header_meta_style.inc.php';
$value) { if(is_string($value)) { $_GET[urldecode($name)] = urldecode($value); diff --git a/server_export.php b/server_export.php index 2ab625d63..b5a4ca675 100644 --- a/server_export.php +++ b/server_export.php @@ -30,6 +30,7 @@ $multi_values .= ''; $multi_values .= "\n"; +// Check if the selected databases are defined in $_GET (from clicking Back button on export.php) if(isset($_GET['db_select'])) { $_GET['db_select'] = urldecode($_GET['db_select']); $_GET['db_select'] = explode(",", $_GET['db_select']);