Sorry i'm not an expert.
Yes i see many changes.
Could you say in any simple words what the main changes? I'm a beginner
Thx

[ Post made via Android ]

Surejan_2017 wrote: 07 May 2017, 19:10 Hello.
Sorry i'm not an expert.
Yes i see many changes.
Could you say in any simple words what the main changes? I'm a beginner![]()
Thx
[ Post made via Android ]![]()
Oh yeah .... thx for this fix. That was one problem!dmzx wrote: 07 May 2017, 19:12Surejan_2017 wrote: 07 May 2017, 19:10 Hello.
Sorry i'm not an expert.
Yes i see many changes.
Could you say in any simple words what the main changes? I'm a beginner![]()
Thx
[ Post made via Android ]![]()
![]()
Added fix for posting twice when no subject was entert.
Changed language files
Added copyright footer
Works with 3.3.12amorino wrote: 18 Jun 2023, 05:37 Hello
Many thanks for all your efforts
Does this extention work with PHPBB 3.3.10 ?
Many thanks
Code: Select all
<!-- IF S_HAS_DRAFTS --><input type="submit" accesskey="d" tabindex="8" name="load" value="{L_LOAD_DRAFT}" class="button2" onclick="load_draft = true;" /> <!-- ENDIF -->
<!-- IF S_SAVE_ALLOWED --><input type="submit" accesskey="k" tabindex="7" name="save" value="{L_SAVE_DRAFT}" class="button2" /> <!-- ENDIF -->
<input type="submit" tabindex="5" name="preview" value="{L_PREVIEW}" class="button1"<!-- IF not S_PRIVMSGS --> onclick="document.getElementById('postform').action += '#preview';"<!-- ENDIF --> />
<input type="submit" accesskey="s" tabindex="6" name="post" value="{L_SUBMIT}" class="button1 default-submit-action" />
Code: Select all
{% if not SUPPORT_STS %}
{% if S_HAS_DRAFTS %}<input type="submit" accesskey="d" tabindex="8" name="load" value="{{ lang('LOAD_DRAFT') }}" class="button2" onclick="load_draft = true;" /> {% endif %}
{% if S_SAVE_ALLOWED %}<input type="submit" accesskey="k" tabindex="7" name="save" value="{{ lang('SAVE_DRAFT') }}" class="button2" /> {% endif %}
<input type="submit" tabindex="5" name="preview" value="{{ lang('PREVIEW') }}" class="button1"{% if not S_PRIVMSGS %} onclick="document.getElementById('postform').action += '#preview';"{% endif %} />
{% endif %}
<input type="reset" name="reset" value="{{ lang('RESET') }}" class="button2" />
<input type="submit" accesskey="s" tabindex="6" name="post" value="{{ lang('SUBMIT') }}" class="button1 default-submit-action" />
Code: Select all
<input type="reset" name="reset" value="{{ lang('RESET') }}" class="button2" />
What do you mean you need text fields? Like you need additional ones? There is already text fields with it. If you’re not using all of them just change the wording to your liking.rudesmen wrote: 02 Sep 2024, 09:22 1. I'm trying to adapt the MOD for my forum. So I need text fields. Editing the posting_editor_subject_after file is not enough because after sending the message, the result is different than expected. I guess the changes need to be made in the listener.php. Is that all?
2. And the second question is how to add one of the additional fields to the topic title?
Example I have a title field: ABC
Additional field from Support Ticket: DEF
I would like the thread title to be ABC DEF after sending the message.