From 143e1a4a836e1fe4d05ab5d1c6008aa0198d2db5 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 13 Dec 2015 09:43:47 +0100 Subject: [PATCH] Bugfix: Warning because of undefined constant --- include/conversation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/conversation.php b/include/conversation.php index 476ae80bea..f2d3cda33b 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -951,7 +951,7 @@ function item_photo_menu($item){ * @param array &$conv_responses (already created with builtin activity structure) * @return void */ -if(! function_exists(builtin_activity_puller)) { +if(! function_exists('builtin_activity_puller')) { function builtin_activity_puller($item, &$conv_responses) { foreach($conv_responses as $mode => $v) { $url = ''; -- 2.30.2