aboutsummaryrefslogtreecommitdiffstats
path: root/include/channel.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/channel.php')
-rw-r--r--include/channel.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/channel.php b/include/channel.php
index 39ffef2d2..6d180da01 100644
--- a/include/channel.php
+++ b/include/channel.php
@@ -1930,4 +1930,15 @@ function channel_reddress($channel) {
return '';
return strtolower($channel['channel_address'] . '@' . App::get_hostname());
+}
+
+
+function channel_manual_conv_update($channel_id) {
+
+ $x = get_pconfig($channel_id, 'system','manual_conversation_update');
+ if($x === false)
+ $x = get_config('system','manual_conversation_update');
+
+ return intval($x);
+
} \ No newline at end of file