diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-07-20 16:54:29 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-07-20 17:58:05 +0200 |
commit | 57ed83f2665ef571f5de25a65764640a38c26acd (patch) | |
tree | 0b0ef12f2e57f3ec8f44b9a18538a804c5fd2f67 /lib/eventsource.php | |
parent | ecf8e77dabc5b3e4e0215134a4cd083296aedbd7 (diff) | |
download | nextcloud-server-57ed83f2665ef571f5de25a65764640a38c26acd.tar.gz nextcloud-server-57ed83f2665ef571f5de25a65764640a38c26acd.zip |
fix eventsource fallback when more then one eventsource is active
Diffstat (limited to 'lib/eventsource.php')
-rw-r--r-- | lib/eventsource.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/eventsource.php b/lib/eventsource.php index cf10660b94c..2a8c6b92902 100644 --- a/lib/eventsource.php +++ b/lib/eventsource.php @@ -36,7 +36,7 @@ class OC_EventSource{ header('Cache-Control: no-cache'); $this->fallback=isset($_GET['fallback']) and $_GET['fallback']=='true'; if($this->fallback){ - $fallBackId=$_GET['fallback_id']; + $this->fallBackId=$_GET['fallback_id']; header("Content-Type: text/html"); echo str_repeat('<span></span>'.PHP_EOL,10); //dummy data to keep IE happy }else{ |