From 6e4c5aa2e1e7c5e41d5b713a588d232b1f2ac707 Mon Sep 17 00:00:00 2001 From: Eric Bremner <ebremner@uwaterloo.ca> Date: Thu, 20 Oct 2022 11:13:10 -0400 Subject: [PATCH] ISTWCMS-5880: coding standards --- uw_cfg_common.install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/uw_cfg_common.install b/uw_cfg_common.install index fc7c4b32..7af7ee80 100644 --- a/uw_cfg_common.install +++ b/uw_cfg_common.install @@ -498,7 +498,7 @@ function uw_cfg_common_update_9106(&$sandbox) { // we are not using an object, just makes it easier // to work with when inserting these rows back // into the database. - $node_data[$table][] = (array)$value; + $node_data[$table][] = (array) $value; } // Truncate the table. @@ -690,7 +690,7 @@ function uw_cfg_common_update_9106(&$sandbox) { } // Insert the row into the database. - $result = $database->insert($table) + $database->insert($table) ->fields($fields) ->execute(); } -- GitLab