diff options
author | David King <imkingdavid@gmail.com> | 2016-08-09 21:16:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-09 21:16:33 -0400 |
commit | 0771eaa732a4c40fd126bd816987dc4c8963af40 (patch) | |
tree | 67bf19720ef9620fa7c1230390a8ce6b713f8c93 /phpBB/styles/subsilver2 | |
parent | 1455be2260e8fbc7e24b20214154655ef87ef224 (diff) | |
download | forums-0771eaa732a4c40fd126bd816987dc4c8963af40.tar forums-0771eaa732a4c40fd126bd816987dc4c8963af40.tar.gz forums-0771eaa732a4c40fd126bd816987dc4c8963af40.tar.bz2 forums-0771eaa732a4c40fd126bd816987dc4c8963af40.tar.xz forums-0771eaa732a4c40fd126bd816987dc4c8963af40.zip |
[ticket/14695] Added posting_editor_subject_append/prepend events to subsilver
As per request in PR.
PHPBB3-14695
Diffstat (limited to 'phpBB/styles/subsilver2')
-rw-r--r-- | phpBB/styles/subsilver2/template/posting_body.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/phpBB/styles/subsilver2/template/posting_body.html b/phpBB/styles/subsilver2/template/posting_body.html index b984c9f96f..95f817e838 100644 --- a/phpBB/styles/subsilver2/template/posting_body.html +++ b/phpBB/styles/subsilver2/template/posting_body.html @@ -166,7 +166,11 @@ <!-- EVENT posting_editor_subject_before --> <tr> <td class="row1" width="22%"><b class="genmed">{L_SUBJECT}{L_COLON}</b></td> - <td class="row2" width="78%"><input class="post" style="width:450px" type="text" name="subject" size="45" maxlength="<!-- IF S_NEW_MESSAGE -->120<!-- ELSE -->124<!-- ENDIF -->" tabindex="2" value="{SUBJECT}" /></td> + <td class="row2" width="78%"> + <!-- EVENT posting_editor_subject_prepend --> + <input class="post" style="width:450px" type="text" name="subject" size="45" maxlength="<!-- IF S_NEW_MESSAGE -->120<!-- ELSE -->124<!-- ENDIF -->" tabindex="2" value="{SUBJECT}" /> + <!-- EVENT posting_editor_subject_append --> + </td> </tr> <!-- EVENT posting_editor_subject_after --> <tr> |