diff options
author | Robin Appelman <robin@icewind.nl> | 2017-03-22 14:32:26 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2017-03-22 14:32:26 +0100 |
commit | 11ee0b14bba1d9a88d1d49072771ba7bc8273f51 (patch) | |
tree | 5003217eebf6966e9a014e1008fc390c19128d52 /apps/files_external/templates | |
parent | 11c4875190aced582f23b2041664972a3769008f (diff) | |
download | nextcloud-server-11ee0b14bba1d9a88d1d49072771ba7bc8273f51.tar.gz nextcloud-server-11ee0b14bba1d9a88d1d49072771ba7bc8273f51.zip |
replace autosave with a save button for external storage configuration
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/files_external/templates')
-rw-r--r-- | apps/files_external/templates/settings.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index 53d2412425c..9d8c179dd32 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -150,13 +150,19 @@ /> <input type="hidden" class="mountOptions" value="" /> </td> - <td class="hidden"> + <td class="remove hidden"> <img class="svg" alt="<?php p($l->t('Delete')); ?>" title="<?php p($l->t('Delete')); ?>" src="<?php print_unescaped(image_path('core', 'actions/delete.svg')); ?>" /> </td> + <td class="save hidden"> + <img alt="<?php p($l->t('Save')); ?>" + title="<?php p($l->t('Save')); ?>" + src="<?php print_unescaped(image_path('core', 'actions/checkmark.svg')); ?>" + /> + </td> </tr> </tbody> </table> |