summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-05-07 12:59:07 +0000
committerDries Buytaert <dries@buytaert.net>2010-05-07 12:59:07 +0000
commitb0ab9f287eae65d24c1d00cfc67cd37339f5ae46 (patch)
treea0805179a6dadff222db676461958176779e1cbf /modules
parent7a78f7aaa03e04ceceb6db52bfa8487c80a2540f (diff)
downloadbrdo-b0ab9f287eae65d24c1d00cfc67cd37339f5ae46.tar.gz
brdo-b0ab9f287eae65d24c1d00cfc67cd37339f5ae46.tar.bz2
- Patch #791986 by aaron: hook_file_insert()/update() correction.
Diffstat (limited to 'modules')
-rw-r--r--modules/system/system.api.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.api.php b/modules/system/system.api.php
index 4243596d7..df0831199 100644
--- a/modules/system/system.api.php
+++ b/modules/system/system.api.php
@@ -2217,7 +2217,7 @@ function hook_file_validate(&$file) {
*
* @see file_save()
*/
-function hook_file_insert(&$file) {
+function hook_file_insert($file) {
}
@@ -2231,7 +2231,7 @@ function hook_file_insert(&$file) {
*
* @see file_save()
*/
-function hook_file_update(&$file) {
+function hook_file_update($file) {
}