diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-02-09 16:42:40 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-02-10 08:40:45 +0100 |
commit | 65e1e4a202598c0ac6562dd15436aaf07ab9b902 (patch) | |
tree | 807d80480ab2e8bd490bb3ac3595c2286cde361a /apps/files_sharing/lib | |
parent | c769f5775d7356211ca461489ae7c19a0f47cf03 (diff) | |
download | nextcloud-server-65e1e4a202598c0ac6562dd15436aaf07ab9b902.tar.gz nextcloud-server-65e1e4a202598c0ac6562dd15436aaf07ab9b902.zip |
Mark the accept button as primary
Diffstat (limited to 'apps/files_sharing/lib')
-rw-r--r-- | apps/files_sharing/lib/notifier.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files_sharing/lib/notifier.php b/apps/files_sharing/lib/notifier.php index 06067a5ee49..27e4e2565f2 100644 --- a/apps/files_sharing/lib/notifier.php +++ b/apps/files_sharing/lib/notifier.php @@ -64,7 +64,8 @@ class Notifier implements INotifier { case 'accept': $action->setParsedLabel( (string) $l->t('Accept') - ); + ) + ->setPrimary(true); break; case 'decline': |