From 1ccda19f7a0baae1d738891f9b73ff97242cbdff Mon Sep 17 00:00:00 2001
From: Friendika <info@friendika.com>
Date: Sat, 21 May 2011 17:17:27 -0700
Subject: [PATCH] hooks can't contain direct values, must be variables

---
 mod/photos.php | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/mod/photos.php b/mod/photos.php
index 17dbf00b6a..89fef2ee86 100644
--- a/mod/photos.php
+++ b/mod/photos.php
@@ -562,7 +562,8 @@ foreach($_FILES AS $key => $val) {
 	if(($maximagesize) && ($filesize > $maximagesize)) {
 		notice( t('Image exceeds size limit of ') . $maximagesize . EOL);
 		@unlink($src);
-		call_hooks('photo_post_end',0);
+		$foo = 0;
+		call_hooks('photo_post_end',$foo);
 		return;
 	}
 
@@ -575,7 +576,8 @@ foreach($_FILES AS $key => $val) {
 		logger('mod/photos.php: photos_post(): unable to process image' , 'LOGGER_DEBUG');
 		notice( t('Unable to process image.') . EOL );
 		@unlink($src);
-		call_hooks('photo_post_end',0);
+		$foo = 0;
+		call_hooks('photo_post_end',$foo);
 		killme();
 	}