diff options
author | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2015-03-20 09:48:14 +0000 |
---|---|---|
committer | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2015-03-20 09:48:14 +0000 |
commit | c37913b1d506c0a4afe035de0e4c4fd5a80bb6ea (patch) | |
tree | 8132907bafa51885f607bdade071e800ae9b1025 /apps/files_external/templates | |
parent | e5e30924b14c22cc68b2fe0c47144f06c4a997aa (diff) | |
download | nextcloud-server-c37913b1d506c0a4afe035de0e4c4fd5a80bb6ea.tar.gz nextcloud-server-c37913b1d506c0a4afe035de0e4c4fd5a80bb6ea.zip |
Introduce async status checking
Diffstat (limited to 'apps/files_external/templates')
-rw-r--r-- | apps/files_external/templates/settings.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index 3368b96a122..4866d177634 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -17,9 +17,7 @@ <?php foreach ($_['mounts'] as $mount): ?> <tr <?php print_unescaped(isset($mount['mountpoint']) ? 'class="'.OC_Util::sanitizeHTML($mount['class']).'"' : 'id="addMountPoint"'); ?> data-id="<?php p($mount['id']) ?>"> <td class="status"> - <?php if (isset($mount['status'])): ?> - <span class="<?php p(($mount['status'] === \OC_Mount_Config::STATUS_SUCCESS) ? 'success' : 'error'); ?>"></span> - <?php endif; ?> + <span></span> </td> <td class="mountPoint"><input type="text" name="mountPoint" value="<?php p(isset($mount['mountpoint']) ? $mount['mountpoint'] : ''); ?>" |