summaryrefslogtreecommitdiff
path: root/modules/upload
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-12-05 22:18:46 +0000
committerDries Buytaert <dries@buytaert.net>2008-12-05 22:18:46 +0000
commit58b0235a72859aa433d743a9f284504f24664857 (patch)
tree524132d2e7ca157baa1059117244a5b27b1f51fb /modules/upload
parent0b06c68b988410c49c9f4ffbf8c3160d4e9da2c7 (diff)
downloadbrdo-58b0235a72859aa433d743a9f284504f24664857.tar.gz
brdo-58b0235a72859aa433d743a9f284504f24664857.tar.bz2
- Patch #324313 by catch et al: load multiple nodes and terms at once.
Diffstat (limited to 'modules/upload')
-rw-r--r--modules/upload/upload.module9
1 files changed, 5 insertions, 4 deletions
diff --git a/modules/upload/upload.module b/modules/upload/upload.module
index c4eacc2bd..fce0b2aff 100644
--- a/modules/upload/upload.module
+++ b/modules/upload/upload.module
@@ -300,10 +300,11 @@ function upload_file_delete(&$file) {
/**
* Implementation of hook_nodeapi_load().
*/
-function upload_nodeapi_load(&$node, $teaser) {
- if (variable_get("upload_$node->type", 1) == 1) {
- $output = array('files' => upload_load($node));
- return $output;
+function upload_nodeapi_load($nodes, $types) {
+ foreach ($nodes as $node) {
+ if (variable_get("upload_$node->type", 1) == 1) {
+ $node->files = upload_load($node);
+ }
}
}