summaryrefslogtreecommitdiff
path: root/modules/node/node.install
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-09-28 02:30:32 +0000
committerDries Buytaert <dries@buytaert.net>2010-09-28 02:30:32 +0000
commitb1190c11b5551f20a99514bf2b0719b74449277d (patch)
tree1c9f62e1b67ab1950c95944862d8fd1120c54291 /modules/node/node.install
parentb095783699dc4d912da49000941b10bae6778037 (diff)
downloadbrdo-b1190c11b5551f20a99514bf2b0719b74449277d.tar.gz
brdo-b1190c11b5551f20a99514bf2b0719b74449277d.tar.bz2
- Patch #924686 by mikey_p, munzirtaha: space required after foreach construct.
Diffstat (limited to 'modules/node/node.install')
-rw-r--r--modules/node/node.install2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/node.install b/modules/node/node.install
index c04f9b7ef..14f1b9de8 100644
--- a/modules/node/node.install
+++ b/modules/node/node.install
@@ -497,7 +497,7 @@ function node_update_7004() {
* Add status/comment/promote and sticky columns to the {node_revision} table.
*/
function node_update_7005() {
- foreach(array('status', 'comment', 'promote', 'sticky') as $column) {
+ foreach (array('status', 'comment', 'promote', 'sticky') as $column) {
db_add_field('node_revision', $column, array(
'type' => 'int',
'not null' => TRUE,