
06-04-2004, 10:25 AM
|
 |
|
|
Join Date: May 2004
Location: Brooklyn, NY
Posts: 361
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Xenon
we are working on avoid that in the future, just right now, it's spread up that way...
but i fear, this time i was wrong....
vb3 doesn't allow this as a template codition, so you have to edit newthread.php
find that:
PHP Code:
construct_edit_toolbar($newpost['message'], 0, $foruminfo['forumid'], $foruminfo['allowsmilies']);
and replace with:
PHP Code:
construct_edit_toolbar(iif($foruminfo['forumid'] == XX AND $newpost['message'] == '', 'Your predefinied text here', $newpost['message']), 0, $foruminfo['forumid'], $foruminfo['allowsmilies']);
|
thank you for the reply.... one more question... how bout for multiple forum id's?
|