reply to a reply [message #5450] |
Tue, 03 September 2002 15:42 ![Go to next message Go to next message](/forum/theme/default/images/down.png) |
dbrocard2
![France France](/forum/images/flags/fr.png) Messages: 7 Registered: September 2002
Karma: 0
|
Junior Member |
|
|
Bonjour,
When I make a reply to a post, the first time Re: appears in the title of the reply, but if I reply to the reply, there is no Re:Re: in the title, and so there is no thread, did I miss anything?
THank you for your help
Dominique
|
|
|
Re: reply to a reply [message #5454 is a reply to message #5450] |
Tue, 03 September 2002 15:56 ![Go to previous message Go to previous message](/forum/theme/default/images/up.png) ![Go to next message Go to next message](/forum/theme/default/images/down.png) |
Ilia
![Canada Canada](/forum/images/flags/ca.png) Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
That is actually done intentionally, there will never be more then one 'Re:' unless it is added manually by the user. This is done to prevent, 'Re: Re: Re: Re:' and so on which can and will occur in large threads. Since the subject length is limited to 100 character, soo there won't be room for the subject as the result of all the 'Re: '.
FUDforum Core Developer
|
|
|
|
Re: reply to a reply [message #5471 is a reply to message #5470] |
Tue, 03 September 2002 21:13 ![Go to previous message Go to previous message](/forum/theme/default/images/up.png) ![Go to next message Go to next message](/forum/theme/default/images/down.png) |
Ilia
![Canada Canada](/forum/images/flags/ca.png) Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
Inside post.php.t, which can be found inside src/ directory change the following line:
$msg_subject = ( !preg_match('/^{TEMPLATE: reply_prefix}/i', $subj) ) ? '{TEMPLATE: reply_prefix}'.$subj : $subj;
to
$msg_subject ='{TEMPLATE: reply_prefix}'.$subj;
FUDforum Core Developer
|
|
|
|
Re: reply to a reply [message #5481 is a reply to message #5479] |
Wed, 04 September 2002 11:38 ![Go to previous message Go to previous message](/forum/theme/default/images/up.png) ![Go to next message Go to next message](/forum/theme/default/images/down.png) |
Ilia
![Canada Canada](/forum/images/flags/ca.png) Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
Well, this is something that involves the logic of form, there is no way to accomplish what you are trying to do without modifying the source, so IMHO this is the 'rigth' way.
FUDforum Core Developer
|
|
|
|
Re: reply to a reply [message #5485 is a reply to message #5484] |
Wed, 04 September 2002 13:02 ![Go to previous message Go to previous message](/forum/theme/default/images/up.png) |
Ilia
![Canada Canada](/forum/images/flags/ca.png) Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
After making the change, you should've rebuilt the templates, which would activate the changes you've made.
FUDforum Core Developer
|
|
|