diff options
author | Volkan Gezer <volkangezer@gmail.com> | 2014-05-27 03:48:24 +0200 |
---|---|---|
committer | Volkan Gezer <volkangezer@gmail.com> | 2014-05-27 03:48:24 +0200 |
commit | 188c5435d8b14b6eeb8abc571a1311ce412e558d (patch) | |
tree | a2d06b71251139a000d3eedb36a9f26bcb7254b3 | |
parent | a34491e28895f84d220cb5dbbbe4273172334716 (diff) | |
download | nextcloud-server-188c5435d8b14b6eeb8abc571a1311ce412e558d.tar.gz nextcloud-server-188c5435d8b14b6eeb8abc571a1311ce412e558d.zip |
unwrapped strings fix
-rw-r--r-- | settings/templates/admin.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php index a4a3698d3bd..5f6a051c209 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -357,10 +357,10 @@ if (!$_['internetconnectionworking']) { <p> <label for="mail_from_address"><?php p($l->t( 'From address' )); ?></label> - <input type="text" name='mail_from_address' id="mail_from_address" placeholder="<?php p('mail')?>" + <input type="text" name='mail_from_address' id="mail_from_address" placeholder="<?php p($l->t('mail'))?>" value='<?php p($_['mail_from_address']) ?>' /> @ - <input type="text" name='mail_domain' id="mail_domain" placeholder="<?php p('example.com')?>" + <input type="text" name='mail_domain' id="mail_domain" placeholder="<?php p($l->t('example.com'))?>" value='<?php p($_['mail_domain']) ?>' /> </p> @@ -383,7 +383,7 @@ if (!$_['internetconnectionworking']) { <p id="setting_smtphost" <?php if ($_['mail_smtpmode'] != 'smtp') print_unescaped(' class="hidden"'); ?>> <label for="mail_smtphost"><?php p($l->t( 'Server address' )); ?></label> - <input type="text" name='mail_smtphost' id="mail_smtphost" placeholder="<?php p('smtp.example.com')?>" + <input type="text" name='mail_smtphost' id="mail_smtphost" placeholder="<?php p($l->t('smtp.example.com'))?>" value='<?php p($_['mail_smtphost']) ?>' /> : <input type="text" name='mail_smtpport' id="mail_smtpport" placeholder="<?php p($l->t('Port'))?>" |