diff options
author | Dries Buytaert <dries@buytaert.net> | 2011-02-24 12:09:59 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2011-02-24 12:09:59 +0000 |
commit | 80aacdb000b36bf87185eda0de960086f31ae2fe (patch) | |
tree | 382a60b65d47cdb853dc7c26a5718c1727cd9924 /modules | |
parent | b3094a0b7605dffa1e695ad72b3da04208a2d2a8 (diff) | |
download | drupal-80aacdb000b36bf87185eda0de960086f31ae2fe.tar.gz drupal-80aacdb000b36bf87185eda0de960086f31ae2fe.zip |
- Patch #1064212 by catch: page caching performance has regressed by 30-40%.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/system/system.api.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.api.php b/modules/system/system.api.php index 92ca1e937fb..85e013824f0 100644 --- a/modules/system/system.api.php +++ b/modules/system/system.api.php @@ -2552,7 +2552,7 @@ function hook_file_load($files) { * * @see file_validate() */ -function hook_file_validate(&$file) { +function hook_file_validate($file) { $errors = array(); if (empty($file->filename)) { |