Browse Source

Remove an extra parenthesis on domain_delete.php.

markjcrane 9 years ago
parent
commit
5a5435c5e7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/domain_settings/domain_delete.php

+ 1 - 1
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);