diff options
Diffstat (limited to 'phpBB')
| -rw-r--r-- | phpBB/phpbb/notification/type/quote.php | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/notification/type/quote.php b/phpBB/phpbb/notification/type/quote.php index 684463c8c3..323c18b204 100644 --- a/phpBB/phpbb/notification/type/quote.php +++ b/phpBB/phpbb/notification/type/quote.php @@ -115,14 +115,14 @@ class quote extends \phpbb\notification\type\post  		));  		// Find the new users to notify -		$notifications = array_keys($this->find_users_for_notification($post)); +		$notifications = $this->find_users_for_notification($post);  		// Find the notifications we must delete  		$remove_notifications = array_diff(array_keys($old_notifications), array_keys($notifications));  		// Find the notifications we must add  		$add_notifications = array(); -		foreach (array_diff(array_keys($notifications), $old_notifications) as $user_id) +		foreach (array_diff(array_keys($notifications), array_keys($old_notifications)) as $user_id)  		{  			$add_notifications[$user_id] = $notifications[$user_id];  		}  | 
