Merge pull request #16980 from nextcloud/bugfix/16878/change_button_label

Change the save credentials button label
This commit is contained in:
Roeland Jago Douma 2019-09-04 08:54:51 +02:00 committed by GitHub
commit 739e25e1db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -1193,7 +1193,7 @@ table.grid td.date {
text-align: right;
}
select:nth-child(2),
input {
input:not([type='button']) {
width: 143px;
}
}

View file

@ -141,7 +141,7 @@ $mail_sendmailmode = [
value="<?php p($_['mail_smtpname']) ?>" />
<input type="text" name="mail_smtppassword" id="mail_smtppassword" autocomplete="off"
placeholder="<?php p($l->t('SMTP Password'))?>" value="<?php p($_['mail_smtppassword']) ?>" />
<input id="mail_credentials_settings_submit" type="button" value="<?php p($l->t('Store credentials')) ?>">
<input id="mail_credentials_settings_submit" type="button" value="<?php p($l->t('Save')) ?>">
</p>
</form>