diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-05-06 11:28:47 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-05-06 11:28:47 +0000 |
commit | 690804580ed54987f8c698621b7c4ad836cb64d5 (patch) | |
tree | 5398dc346b2dec7c25ab77961ce4edb52c93cf5e | |
parent | 160e652819ae49e9e72f460b3cc0090b0a0d9c76 (diff) | |
download | brdo-690804580ed54987f8c698621b7c4ad836cb64d5.tar.gz brdo-690804580ed54987f8c698621b7c4ad836cb64d5.tar.bz2 |
- Patch #366610 by mr.baileys: make sure we generate valid markup.
-rw-r--r-- | modules/upload/upload.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/upload/upload.module b/modules/upload/upload.module index e71099b27..defea1037 100644 --- a/modules/upload/upload.module +++ b/modules/upload/upload.module @@ -449,7 +449,7 @@ function theme_upload_attachments($elements) { } } if (count($rows)) { - return theme('table', $header, $rows, array('id' => 'attachments')); + return theme('table', $header, $rows, array('class' => 'attachments')); } } |