diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-07-05 08:48:58 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-07-05 08:48:58 +0000 |
commit | 806d0a3dee25333558bb0a888c2a51c33f0723cd (patch) | |
tree | 4171b59abeb1607948721d86f5c76405c666491b /modules/upload/upload.module | |
parent | b9c40a52370c2e7d8b3db078f869e02881435da9 (diff) | |
download | brdo-806d0a3dee25333558bb0a888c2a51c33f0723cd.tar.gz brdo-806d0a3dee25333558bb0a888c2a51c33f0723cd.tar.bz2 |
#156910 by asimmonds: fix code indentation problems introduced with new code in this development cycle; only whitespace changes
Diffstat (limited to 'modules/upload/upload.module')
-rw-r--r-- | modules/upload/upload.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/upload/upload.module b/modules/upload/upload.module index 22419573c..5591c7fd1 100644 --- a/modules/upload/upload.module +++ b/modules/upload/upload.module @@ -494,8 +494,8 @@ function theme_upload_attachments($files) { $header = array(t('Attachment'), t('Size')); $rows = array(); foreach ($files as $file) { - $file = (object)$file; - if ($file->list && empty($file->remove)) { + $file = (object)$file; + if ($file->list && empty($file->remove)) { $href = file_create_url($file->filepath); $text = $file->description ? $file->description : $file->filename; $rows[] = array(l($text, $href), format_size($file->filesize)); |