From e30853303f6ef852e6d8f46ce07c9e8af14de63b Mon Sep 17 00:00:00 2001 From: webchick Date: Mon, 18 Jul 2011 00:56:06 -0700 Subject: Issue #348448 follow-up by jbrown: Coding standard fixes to E_STRICT tests. --- scripts/generate-d6-content.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts') diff --git a/scripts/generate-d6-content.sh b/scripts/generate-d6-content.sh index bba61caee..5079c2338 100644 --- a/scripts/generate-d6-content.sh +++ b/scripts/generate-d6-content.sh @@ -100,7 +100,7 @@ module_load_include('inc', 'node', 'node.pages'); for ($i = 0; $i < 24; $i++) { $uid = intval($i / 8) + 3; $user = user_load($uid); - $node = new stdClass; + $node = new stdClass(); $node->uid = $uid; $node->type = $i < 12 ? 'page' : 'story'; $node->sticky = 0; @@ -148,7 +148,7 @@ for ($i = 0; $i < 24; $i++) { for ($i = 0; $i < 12; $i++) { $uid = intval($i / 4) + 3; $user = user_load($uid); - $node = new stdClass; + $node = new stdClass(); $node->uid = $uid; $node->type = 'poll'; $node->sticky = 0; @@ -187,7 +187,7 @@ for ($i = 0; $i < 12; $i++) { $uid = 6; $user = user_load($uid); -$node = new stdClass; +$node = new stdClass(); $node->uid = $uid; $node->type = 'broken'; $node->sticky = 0; -- cgit v1.2.3