Quote:
Originally Posted by Stratis
I am confused. Sorry for not understanding easily.
That's take the first code in post #11
PHP Code:
switch ($foruminfo['forumid']) { case XX: $vbphrase['post_new_thread'] = 'Submit Ticket'; break; case YY: $vbphrase['post_new_thread'] = 'New Help Thread'; break; case ZZ: $vbphrase['post_new_thread'] = 'New Question Thread'; break; }
How I put more than 1 forum id? in
case XX:
case YY:
case ZZ:
Thanks
|
I think what you would need to dois replace the XX, YY, ZZ with the actual forum ids for those particular buttons. So you would put....
PHP Code:
switch ($foruminfo['forumid'])
{
case 1:
$vbphrase['post_new_thread'] = 'Submit Ticket';
break;
case 2:
$vbphrase['post_new_thread'] = 'New Help Thread';
break;
case 3:
$vbphrase['post_new_thread'] = 'New Question Thread';
break;
}
where the numbers after the word case are the actual numbers of the forums corresponding to the buttons you want.