diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2012-08-13 17:10:36 -0400 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2012-08-13 17:10:58 -0400 |
commit | 830676b475ad072aa7d6e69a5facae319befa52c (patch) | |
tree | 4f4c5c12d5f048be6f3bc5454ce8ba0c28234f6a /apps/files_external/templates | |
parent | d3bdab286b77c58bf8c1accfdb3946402ed9535a (diff) | |
download | nextcloud-server-830676b475ad072aa7d6e69a5facae319befa52c.tar.gz nextcloud-server-830676b475ad072aa7d6e69a5facae319befa52c.zip |
Improve usability for configuring Dropbox and Google Drive external storage
Diffstat (limited to 'apps/files_external/templates')
-rw-r--r-- | apps/files_external/templates/settings.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index e8bc94790dc..397f0d951b0 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -15,7 +15,7 @@ <tbody width="100%"> <?php $_['mounts'] = array_merge($_['mounts'], array('' => array())); ?> <?php foreach ($_['mounts'] as $mountPoint => $mount): ?> - <tr <?php if ($mountPoint == '') echo 'id="addMountPoint"'; ?>> + <tr <?php echo ($mountPoint != '') ? 'class="'.$mount['class'].'"' : 'id="addMountPoint"'; ?>> <td class="mountPoint"><input type="text" name="mountPoint" value="<?php echo $mountPoint; ?>" placeholder="<?php echo $l->t('Mount point'); ?>" /></td> <?php if ($mountPoint == ''): ?> <td class="backend"> |