Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/richdocuments.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2018-11-06 23:32:34 +0300
committerGitHub <noreply@github.com>2018-11-06 23:32:34 +0300
commit5063c8b6ae7d2332de3b029e19f341e4b1d33050 (patch)
treef4b7b19117fae9ce4b7f11c1bc3f959a59ed4471
parent1be3df3427bf95e774f3cac3e994f54c90f5f52b (diff)
parent39d9f0261aba3da1301d04110fb050b7a074bbee (diff)
Merge pull request #298 from nextcloud/fix/297/php56
Make php5.6 compatible again
-rw-r--r--appinfo/info.xml2
-rw-r--r--lib/Preview/Office.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 6073b14b..612aced2 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -4,7 +4,7 @@
<name>Collabora Online</name>
<summary>Edit office documents directly in your browser.</summary>
<description>This application can connect to a Collabora Online server (WOPI Client). Nextcloud is the WOPI Host. Please read the documentation to learn more about that.</description>
- <version>3.0.3</version>
+ <version>3.0.4</version>
<licence>agpl</licence>
<author>Collabora Productivity based on work of Frank Karlitschek, Victor Dubiniuk</author>
<types>
diff --git a/lib/Preview/Office.php b/lib/Preview/Office.php
index 612820cb..da0582e0 100644
--- a/lib/Preview/Office.php
+++ b/lib/Preview/Office.php
@@ -41,7 +41,7 @@ abstract class Office extends Provider {
$this->config = $config;
}
- private function getWopiURL(): string {
+ private function getWopiURL() {
return $this->config->getAppValue('richdocuments', 'wopi_url');
}