From 68da8f9fe2ae990c509b11bc742934e2c61c1392 Mon Sep 17 00:00:00 2001 From: markjcrane Date: Fri, 29 Apr 2016 16:13:44 -0600 Subject: [PATCH] Remove an extra parenthesis on domain_delete.php. --- core/domain_settings/domain_delete.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/domain_settings/domain_delete.php b/core/domain_settings/domain_delete.php index 4812e61543..29ef9e1222 100644 --- a/core/domain_settings/domain_delete.php +++ b/core/domain_settings/domain_delete.php @@ -97,7 +97,7 @@ if (strlen($id) > 0) { if (isset($apps)) foreach ($apps as &$app) { if (isset($app['db'])) foreach ($app['db'] as $row) { $table_name = $row['table']; - if (isset(($row['fields'])) foreach ($row['fields'] as $field) { + if (isset($row['fields'])) foreach ($row['fields'] as $field) { if ($field['name'] == "domain_uuid") { $sql = "delete from $table_name where domain_uuid = '$id' "; $db->query($sql);