aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2017-02-07 20:45:13 +0100
committerMario Vavti <mario@mariovavti.com>2017-02-07 20:45:13 +0100
commit1bb56309a62697f6549f159a6ed0d35fbf8f668b (patch)
tree17cefc52a20798581290fbc876fb7c6f071bfaba /include
parent6468b7a9147cd8a0d26523af90053ac3dcbb6bfd (diff)
downloadvolse-hubzilla-1bb56309a62697f6549f159a6ed0d35fbf8f668b.tar.gz
volse-hubzilla-1bb56309a62697f6549f159a6ed0d35fbf8f668b.tar.bz2
volse-hubzilla-1bb56309a62697f6549f159a6ed0d35fbf8f668b.zip
default to manual conversation updates
Diffstat (limited to 'include')
-rw-r--r--include/channel.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/channel.php b/include/channel.php
index bc36a5707..8880c7f45 100644
--- a/include/channel.php
+++ b/include/channel.php
@@ -1972,6 +1972,8 @@ 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');
+ if($x === false)
+ $x = 1;
return intval($x);
@@ -1989,4 +1991,4 @@ function remote_login() {
-} \ No newline at end of file
+}