diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-09-28 02:30:32 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-09-28 02:30:32 +0000 |
commit | b1190c11b5551f20a99514bf2b0719b74449277d (patch) | |
tree | 1c9f62e1b67ab1950c95944862d8fd1120c54291 /modules/node/node.install | |
parent | b095783699dc4d912da49000941b10bae6778037 (diff) | |
download | brdo-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.install | 2 |
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, |