From 15f8beef5fbf1a8b48b1cd567cae39b132f5916f Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 11 Jul 2011 15:54:10 -0400 Subject: [PATCH] realtime_channel must always be writeable --- plugins/Realtime/RealtimePlugin.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/plugins/Realtime/RealtimePlugin.php b/plugins/Realtime/RealtimePlugin.php index 5f7c34cadb..ff837d9617 100644 --- a/plugins/Realtime/RealtimePlugin.php +++ b/plugins/Realtime/RealtimePlugin.php @@ -468,4 +468,9 @@ class RealtimePlugin extends Plugin return $timeline; } + + function onStartReadWriteTables(&$alwaysRW, &$rwdb) + { + $alwaysRW[] = 'realtime_channel'; + } } -- 2.39.5