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

github.com/nextcloud/ocsms.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLoic Blot <loic.blot@unix-experience.fr>2015-01-26 13:37:18 +0300
committerLoic Blot <loic.blot@unix-experience.fr>2015-01-26 13:38:03 +0300
commit89f35bbbbe2d91e70bb7e0f4f335bf924e2d408f (patch)
tree81f39090b40f8c4dae9eef132aee3e970a31f3b2
parentf54f4c0aa22e4ee41b94de5be5244c51b65b957b (diff)
Tag 1.4.1: Fix AppFramework checkv1.4.1
-rw-r--r--appinfo/app.php2
-rw-r--r--appinfo/info.xml2
2 files changed, 2 insertions, 2 deletions
diff --git a/appinfo/app.php b/appinfo/app.php
index 7072f61..5525145 100644
--- a/appinfo/app.php
+++ b/appinfo/app.php
@@ -11,7 +11,7 @@
namespace OCA\OcSms\AppInfo;
-if(\OCP\App::isEnabled('appframework')){
+if (class_exists('\OCP\AppFramework\App')) {
\OCP\App::addNavigationEntry(array(
// the string under which your app will be referenced in owncloud
'id' => 'ocsms',
diff --git a/appinfo/info.xml b/appinfo/info.xml
index cf3042b..f5fe409 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -5,6 +5,6 @@
<description>A app to sync SMS with your ownCloud</description>
<licence>AGPL</licence>
<author>Loic Blot</author>
- <version>1.4.0</version>
+ <version>1.4.1</version>
<requiremin>7</requiremin>
</info>