Skip to content

Commit

Permalink
make blank msg lines consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
xzilla authored and Robert Treat committed Oct 30, 2017
1 parent aa4fb61 commit f926266
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ function doDrop($confirm) {
}
else {
if (is_array($_POST['function_oid'])) {
$msg='';
$msg = '';
$status = $data->beginTransaction();
if ($status == 0) {
foreach($_POST['function_oid'] as $k => $s) {
Expand Down
2 changes: 1 addition & 1 deletion schemas.php
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ function doDrop($confirm) {
}
else {
if (is_array($_POST['nsp'])) {
$msg='';
$msg = '';
$status = $data->beginTransaction();
if ($status == 0) {
foreach($_POST['nsp'] as $s) {
Expand Down
2 changes: 1 addition & 1 deletion sequences.php
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ function doDrop($confirm, $msg = '') {
}
else {
if (is_array($_POST['sequence'])) {
$msg='';
$msg = '';
$status = $data->beginTransaction();
if ($status == 0) {
foreach($_POST['sequence'] as $s) {
Expand Down
2 changes: 1 addition & 1 deletion tables.php
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@ function doDrop($confirm) {
else {
//If multi drop
if (is_array($_REQUEST['table'])) {
$msg='';
$msg = '';
$status = $data->beginTransaction();
if ($status == 0) {
foreach($_REQUEST['table'] as $t) {
Expand Down
2 changes: 1 addition & 1 deletion views.php
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ function doDrop($confirm) {
}
else {
if (is_array($_POST['view'])) {
$msg='';
$msg = '';
$status = $data->beginTransaction();
if ($status == 0) {
foreach($_POST['view'] as $s) {
Expand Down

0 comments on commit f926266

Please sign in to comment.