Remove duplicated global variable declarations.
authorsoranzo <soranzo>
Tue, 10 Jul 2007 09:04:20 +0000 (09:04 +0000)
committersoranzo <soranzo>
Tue, 10 Jul 2007 09:04:20 +0000 (09:04 +0000)
constraints.php
database.php
domains.php
rules.php
schemas.php

index c9cb436b9e869a496b24a144522d8ef474871726..e5b5babe943dd4feb883a93cc46be234c6c60bb2 100644 (file)
@@ -3,7 +3,7 @@
        /**
         * List constraints on a table
         *
-        * $Id: constraints.php,v 1.47 2007/05/28 17:30:32 ioguix Exp $
+        * $Id: constraints.php,v 1.48 2007/07/10 09:04:20 soranzo Exp $
         */
 
        // Include application functions
@@ -16,7 +16,7 @@
         * Confirm and then actually add a FOREIGN KEY constraint
         */
        function addForeignKey($stage, $msg = '') {
-               global $PHP_SELF, $data, $data, $misc;
+               global $PHP_SELF, $data, $misc;
                global $lang;
 
                if (!isset($_POST['name'])) $_POST['name'] = '';
         * Confirm and then actually add a PRIMARY KEY or UNIQUE constraint
         */
        function addPrimaryOrUniqueKey($type, $confirm, $msg = '') {
-               global $PHP_SELF, $data, $data, $misc;
+               global $PHP_SELF, $data, $misc;
                global $lang;
 
                if (!isset($_POST['name'])) $_POST['name'] = '';
         * Confirm and then actually add a CHECK constraint
         */
        function addCheck($confirm, $msg = '') {
-               global $PHP_SELF, $data, $data, $misc;
+               global $PHP_SELF, $data, $misc;
                global $lang;
 
                if (!isset($_POST['name'])) $_POST['name'] = '';
index db5607ba245041a251665e917e4fad6d73ba9920..95ef3bb648cd27d90f7457f312fecca511afe3b9 100755 (executable)
@@ -3,7 +3,7 @@
        /**
         * Manage schemas within a database
         *
-        * $Id: database.php,v 1.97 2007/05/28 17:30:32 ioguix Exp $
+        * $Id: database.php,v 1.98 2007/07/10 09:04:21 soranzo Exp $
         */
 
        // Include application functions
@@ -33,7 +33,7 @@
         * Searches for a named database object
         */
        function doFind($confirm = true, $msg = '') {
-               global $PHP_SELF, $data, $data, $misc;
+               global $PHP_SELF, $data, $misc;
                global $lang, $conf;
 
                if (!isset($_GET['term'])) $_GET['term'] = '';
index 45fc06f0720755be2989838b9d424cb0111d6747..719c2ba546ba83734f60a55dc1aae60440fd4aa8 100644 (file)
@@ -3,7 +3,7 @@
        /**
         * Manage domains in a database
         *
-        * $Id: domains.php,v 1.29 2007/05/28 17:30:32 ioguix Exp $
+        * $Id: domains.php,v 1.30 2007/07/10 09:04:21 soranzo Exp $
         */
 
        // Include application functions
@@ -87,7 +87,7 @@
         * Confirm and then actually add a CHECK constraint
         */
        function addCheck($confirm, $msg = '') {
-               global $PHP_SELF, $data, $data, $misc;
+               global $PHP_SELF, $data, $misc;
                global $lang;
 
                if (!isset($_POST['name'])) $_POST['name'] = '';
index 1f7fdb1ef1138613527f360b2661ced7bafacd63..9231c117e871ea8a48d5a5626785e8c9edc2d29d 100644 (file)
--- a/rules.php
+++ b/rules.php
@@ -3,7 +3,7 @@
        /**
         * List rules on a table OR view
         *
-        * $Id: rules.php,v 1.29 2007/05/28 17:30:32 ioguix Exp $
+        * $Id: rules.php,v 1.30 2007/07/10 09:04:21 soranzo Exp $
         */
 
        // Include application functions
@@ -15,7 +15,7 @@
         * Confirm and then actually create a rule
         */
        function createRule($confirm, $msg = '') {
-               global $PHP_SELF, $data, $data, $misc;
+               global $PHP_SELF, $data, $misc;
                global $lang;
 
                if (!isset($_POST['name'])) $_POST['name'] = '';
index 984ccf49b5a81b5c2380965c4bfe7a5353745798..80b3f0f2f7fe8c89fa0b1a402b44da6fa80643be 100755 (executable)
@@ -3,7 +3,7 @@
        /**
         * Manage schemas in a database
         *
-        * $Id: schemas.php,v 1.15 2007/05/28 17:30:32 ioguix Exp $
+        * $Id: schemas.php,v 1.16 2007/07/10 09:04:21 soranzo Exp $
         */
 
        // Include application functions
         * Show confirmation of drop and perform actual drop
         */
        function doDrop($confirm) {
-               global $PHP_SELF, $data, $data, $misc;
+               global $PHP_SELF, $data, $misc;
                global $lang, $_reload_browser;
 
                if ($confirm) {