From 4c1b7af4c5b9d0263a2d7174fdbfe37656a30b39 Mon Sep 17 00:00:00 2001 From: Dennis Date: Thu, 14 Sep 2006 21:22:04 +0000 Subject: [PATCH] Fixed error git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/phpsurveyor@2068 b72ed6b6-b9f8-46b5-92b4-906544132732 --- admin/dumpdb.php | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/admin/dumpdb.php b/admin/dumpdb.php index f2f235de651..1cae3028669 100644 --- a/admin/dumpdb.php +++ b/admin/dumpdb.php @@ -69,6 +69,14 @@ echo $export; exit; + } +else + { + $action = "dumpdb"; + include("access_denied.php"); + include("admin.php"); + } + function defdump($tablename) { global $connect; @@ -135,13 +143,6 @@ function datadump ($table) { $result .= ");\n"; } // while return $result . "\n\n\n"; - } - - } -else - { - $action = "dumpdb"; - include("access_denied.php"); - include("admin.php"); - } + } + ?>