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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjoern Schiessle <schiessle@owncloud.com>2016-02-26 19:51:20 +0300
committerBjoern Schiessle <schiessle@owncloud.com>2016-02-29 18:50:34 +0300
commit87e47afed85521439c351ae30e9849f0a74a399d (patch)
treea644b7fe1d822deaeee9fb86fd9d10cc952ddf9d /apps/federation/templates
parent7189c72c33a03d57473f7e3443193d07bece7c15 (diff)
remove synced remote address book if the remote server revoked access to his system address book
Diffstat (limited to 'apps/federation/templates')
-rw-r--r--apps/federation/templates/settings-admin.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/federation/templates/settings-admin.php b/apps/federation/templates/settings-admin.php
index 854bb744179..77c552ee789 100644
--- a/apps/federation/templates/settings-admin.php
+++ b/apps/federation/templates/settings-admin.php
@@ -26,7 +26,11 @@ style('federation', 'settings-admin')
<li id="<?php p($trustedServer['id']); ?>" class="icon-delete">
<?php if((int)$trustedServer['status'] === TrustedServers::STATUS_OK) { ?>
<span class="status success"></span>
- <?php } elseif((int)$trustedServer['status'] === TrustedServers::STATUS_PENDING) { ?>
+ <?php
+ } elseif(
+ (int)$trustedServer['status'] === TrustedServers::STATUS_PENDING ||
+ (int)$trustedServer['status'] === TrustedServers::STATUS_ACCESS_REVOKED
+ ) { ?>
<span class="status indeterminate"></span>
<?php } else {?>
<span class="status error"></span>