diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-05-07 12:59:07 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-05-07 12:59:07 +0000 |
commit | b0ab9f287eae65d24c1d00cfc67cd37339f5ae46 (patch) | |
tree | a0805179a6dadff222db676461958176779e1cbf | |
parent | 7a78f7aaa03e04ceceb6db52bfa8487c80a2540f (diff) | |
download | brdo-b0ab9f287eae65d24c1d00cfc67cd37339f5ae46.tar.gz brdo-b0ab9f287eae65d24c1d00cfc67cd37339f5ae46.tar.bz2 |
- Patch #791986 by aaron: hook_file_insert()/update() correction.
-rw-r--r-- | modules/system/system.api.php | 4 |
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) { } |