diff options
author | Robert Treat | 2014-07-20 23:43:03 +0000 |
---|---|---|
committer | Robert Treat | 2014-07-20 23:43:03 +0000 |
commit | ca302af8a75b35e2796f75f7dab76375f573a3f3 (patch) | |
tree | 20607a27cdfb210b7b9830d3687214ecd6eda392 | |
parent | 5acbcf2c5b54a2293afd2053b8ad1dd7acfe3fd1 (diff) |
make blank msg lines consistent
-rw-r--r-- | functions.php | 2 | ||||
-rwxr-xr-x | schemas.php | 2 | ||||
-rw-r--r-- | sequences.php | 2 | ||||
-rw-r--r-- | tables.php | 2 | ||||
-rw-r--r-- | views.php | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/functions.php b/functions.php index 734e7ef3..365c0d95 100644 --- a/functions.php +++ b/functions.php @@ -447,7 +447,7 @@ } else { if (is_array($_POST['function_oid'])) { - $msg=''; + $msg = ''; $status = $data->beginTransaction(); if ($status == 0) { foreach($_POST['function_oid'] as $k => $s) { diff --git a/schemas.php b/schemas.php index ad733747..a5ac8381 100755 --- a/schemas.php +++ b/schemas.php @@ -294,7 +294,7 @@ } else { if (is_array($_POST['nsp'])) { - $msg=''; + $msg = ''; $status = $data->beginTransaction(); if ($status == 0) { foreach($_POST['nsp'] as $s) { diff --git a/sequences.php b/sequences.php index 454b9d97..a51878c0 100644 --- a/sequences.php +++ b/sequences.php @@ -326,7 +326,7 @@ } else { if (is_array($_POST['sequence'])) { - $msg=''; + $msg = ''; $status = $data->beginTransaction(); if ($status == 0) { foreach($_POST['sequence'] as $s) { @@ -689,7 +689,7 @@ else { //If multi drop if (is_array($_REQUEST['table'])) { - $msg=''; + $msg = ''; $status = $data->beginTransaction(); if ($status == 0) { foreach($_REQUEST['table'] as $t) { @@ -161,7 +161,7 @@ } else { if (is_array($_POST['view'])) { - $msg=''; + $msg = ''; $status = $data->beginTransaction(); if ($status == 0) { foreach($_POST['view'] as $s) { |