summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Treat2014-07-20 23:43:03 +0000
committerRobert Treat2014-07-20 23:43:03 +0000
commitca302af8a75b35e2796f75f7dab76375f573a3f3 (patch)
tree20607a27cdfb210b7b9830d3687214ecd6eda392
parent5acbcf2c5b54a2293afd2053b8ad1dd7acfe3fd1 (diff)
make blank msg lines consistent
-rw-r--r--functions.php2
-rwxr-xr-xschemas.php2
-rw-r--r--sequences.php2
-rw-r--r--tables.php2
-rw-r--r--views.php2
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) {
diff --git a/tables.php b/tables.php
index 36db6b7b..ab727f1f 100644
--- a/tables.php
+++ b/tables.php
@@ -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) {
diff --git a/views.php b/views.php
index 2fcbca59..56e2217a 100644
--- a/views.php
+++ b/views.php
@@ -161,7 +161,7 @@
}
else {
if (is_array($_POST['view'])) {
- $msg='';
+ $msg = '';
$status = $data->beginTransaction();
if ($status == 0) {
foreach($_POST['view'] as $s) {