diff options
author | Raphaƫl M <Galixte@users.noreply.github.com> | 2015-04-02 02:40:56 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2015-04-02 12:48:31 +0200 |
commit | 40c79f2a26788705225a9d7e47e975e93e95fd8c (patch) | |
tree | 298ba5329a0a0feaf8a3cd51a3051f30e437bc78 | |
parent | 42d831f472710e0cea13597b847f8e28e7f681b9 (diff) | |
download | forums-40c79f2a26788705225a9d7e47e975e93e95fd8c.tar forums-40c79f2a26788705225a9d7e47e975e93e95fd8c.tar.gz forums-40c79f2a26788705225a9d7e47e975e93e95fd8c.tar.bz2 forums-40c79f2a26788705225a9d7e47e975e93e95fd8c.tar.xz forums-40c79f2a26788705225a9d7e47e975e93e95fd8c.zip |
[ticket/13736] Missing four colon in Contact us page
Replacing of four ```:``` with four {L_COLON} in Contact us page.
PHPBB3-13736
-rw-r--r-- | phpBB/styles/prosilver/template/memberlist_email.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/styles/prosilver/template/memberlist_email.html b/phpBB/styles/prosilver/template/memberlist_email.html index 1bfd83e3a1..4a9f764d07 100644 --- a/phpBB/styles/prosilver/template/memberlist_email.html +++ b/phpBB/styles/prosilver/template/memberlist_email.html @@ -40,21 +40,21 @@ </dl> <!-- ELSEIF S_CONTACT_ADMIN--> <dl> - <dt><label>{L_RECIPIENT}:</label></dt> + <dt><label>{L_RECIPIENT}{L_COLON}</label></dt> <dd><strong>{L_ADMINISTRATOR}</strong></dd> </dl> <!-- IF not S_IS_REGISTERED --> <dl> - <dt><label for="email">{L_SENDER_EMAIL_ADDRESS}:</label></dt> + <dt><label for="email">{L_SENDER_EMAIL_ADDRESS}{L_COLON}</label></dt> <dd><input class="inputbox autowidth" type="text" name="email" id="email" size="50" maxlength="100" tabindex="1" value="{EMAIL}" /></dd> </dl> <dl> - <dt><label for="name">{L_SENDER_NAME}:</label></dt> + <dt><label for="name">{L_SENDER_NAME}{L_COLON}</label></dt> <dd><input class="inputbox autowidth" type="text" name="name" id="name" size="50" tabindex="2" value="{NAME}" /></dd> </dl> <!-- ENDIF --> <dl> - <dt><label for="subject">{L_SUBJECT}:</label></dt> + <dt><label for="subject">{L_SUBJECT}{L_COLON}</label></dt> <dd><input class="inputbox autowidth" type="text" name="subject" id="subject" size="50" tabindex="3" value="{SUBJECT}" /></dd> </dl> <!-- ELSE --> |