aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUnrud <unrud@openaliasbox.org>2017-03-22 05:49:27 +0100
committerUnrud <unrud@openaliasbox.org>2017-03-22 05:49:27 +0100
commit31a1d176a2e0a16f5334bd406243ca93b64674ee (patch)
treefdc45af107d0cdf861bf44ebd9d8d271037e29ba
parentFix compatibility with older versions of setuptools (diff)
downloadradicaleinfcloud-31a1d176a2e0a16f5334bd406243ca93b64674ee.tar.gz
radicaleinfcloud-31a1d176a2e0a16f5334bd406243ca93b64674ee.tar.bz2
radicaleinfcloud-31a1d176a2e0a16f5334bd406243ca93b64674ee.zip
InfCloud: Disable update checks
-rw-r--r--radicale_web/web/infcloud/cache.manifest2
-rw-r--r--radicale_web/web/infcloud/config.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/radicale_web/web/infcloud/cache.manifest b/radicale_web/web/infcloud/cache.manifest
index 973f958..bba99ff 100644
--- a/radicale_web/web/infcloud/cache.manifest
+++ b/radicale_web/web/infcloud/cache.manifest
@@ -1,5 +1,5 @@
CACHE MANIFEST
-#V 20150922153011
+#V 1
CACHE:
addressbook.js
diff --git a/radicale_web/web/infcloud/config.js b/radicale_web/web/infcloud/config.js
index cfb946f..0fc340a 100644
--- a/radicale_web/web/infcloud/config.js
+++ b/radicale_web/web/infcloud/config.js
@@ -524,7 +524,7 @@ var globalResourceAlphabetSorting=true;
// If undefined (or empty), update notifications will be shown to all users.
// Example:
// globalNewVersionNotifyUsers=['admin', 'peter'];
-var globalNewVersionNotifyUsers=[];
+var globalNewVersionNotifyUsers=null;
// globalDatepickerFormat
bgstack15