[Pkg-owncloud-commits] [owncloud] 145/223: fix typo - Backups -> Backends

David Prévot taffit at moszumanska.debian.org
Sun Jun 22 01:54:17 UTC 2014


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository owncloud.

commit 78b6f595232096a514f7f40281d53ec7aabc772a
Author: Morris Jobke <hey at morrisjobke.de>
Date:   Mon Jun 16 11:33:51 2014 +0200

    fix typo - Backups -> Backends
---
 apps/files_external/css/settings.css       | 2 +-
 apps/files_external/js/settings.js         | 4 ++--
 apps/files_external/templates/settings.php | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/apps/files_external/css/settings.css b/apps/files_external/css/settings.css
index ea0b70e..758c52a 100644
--- a/apps/files_external/css/settings.css
+++ b/apps/files_external/css/settings.css
@@ -26,6 +26,6 @@ tr:hover>td.remove>img { visibility:visible; cursor:pointer; }
 	border-radius: 50%;
 }
 
-#userMountingBackups {
+#userMountingBackends {
 	padding-left: 25px;
 }
diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js
index 2908177..e5cb373 100644
--- a/apps/files_external/js/settings.js
+++ b/apps/files_external/js/settings.js
@@ -311,11 +311,11 @@ $(document).ready(function() {
 		if (this.checked) {
 			OC.AppConfig.setValue('files_external', 'allow_user_mounting', 'yes');
 			$('input[name="allowUserMountingBackends\\[\\]"]').prop('checked', true);
-			$('#userMountingBackups').removeClass('hidden');
+			$('#userMountingBackends').removeClass('hidden');
 			$($('input[name="allowUserMountingBackends\\[\\]"]')[0]).trigger('change');
 		} else {
 			OC.AppConfig.setValue('files_external', 'allow_user_mounting', 'no');
-			$('#userMountingBackups').addClass('hidden');
+			$('#userMountingBackends').addClass('hidden');
 		}
 		OC.msg.finishedSaving('#userMountingMsg', {status: 'success', data: {message: t('settings', 'Saved')}});
 	});
diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php
index df80ed1..98fcf4a 100644
--- a/apps/files_external/templates/settings.php
+++ b/apps/files_external/templates/settings.php
@@ -131,7 +131,7 @@
 			value="1" <?php if ($_['allowUserMounting'] == 'yes') print_unescaped(' checked="checked"'); ?> />
 		<label for="allowUserMounting"><?php p($l->t('Enable User External Storage')); ?></label> <span id="userMountingMsg" class="msg"></span>
 
-		<p id="userMountingBackups"<?php if ($_['allowUserMounting'] != 'yes'): ?> class="hidden"<?php endif; ?>>
+		<p id="userMountingBackends"<?php if ($_['allowUserMounting'] != 'yes'): ?> class="hidden"<?php endif; ?>>
 			<?php p($l->t('Allow users to mount the following external storage')); ?><br />
 			<?php $i = 0; foreach ($_['personal_backends'] as $class => $backend): ?>
 				<input type="checkbox" id="allowUserMountingBackends<?php p($i); ?>" name="allowUserMountingBackends[]" value="<?php p($class); ?>" <?php if ($backend['enabled']) print_unescaped(' checked="checked"'); ?> />

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git



More information about the Pkg-owncloud-commits mailing list