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/system/system.module | |
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/system/system.module')
-rw-r--r-- | modules/system/system.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 22e270383..32e6e3859 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -2209,7 +2209,7 @@ function system_update_files_database(&$files, $type) { // All remaining files are not in the system table, so we need to add them. $query = db_insert('system')->fields(array('filename', 'name', 'type', 'owner', 'info')); - foreach($files as &$file) { + foreach ($files as &$file) { if (isset($file->exists)) { unset($file->exists); } |