JoshPet gave me some help with this some time ago.
I needed to change the New reply link in a specific forum to a Private Message link.
The code was for 6.1 and looked like this:
//------------------------------------------------------<br /> // Set up the link to send the user a Private Message - by JoshPet<br /> <br />if ($Board == "supertest" or $Board == "test") {<br /> <br /> $postrow[$i]['replylinkstart'] = "<a href=\"{$config['phpurl']}/sendprivate.php?Cat=$Cat&User=$EUsername\">";<br /> $postrow[$i]['replylinkstop'] = "</a>";<br /> }<br />else {<br /> <br /> $postrow[$i]['replylinkstart'] = "<a href=\"{$config['phpurl']}/newreply.php?Cat=$Cat&Board=$Board&Number=$Number&page=$page&view=$view&what=showflat&sb=$sb&o=$o&fpart=$fpart&vc=1\">";<br /> $postrow[$i]['replylinkstop'] = "</a>";<br /> }
How do I get this to work vist 6.2.2?