Hi,
there is a small bug in
PHP Code:
$_POST['message']=$_POST['message']."\n [url=".$vboptions[homeurl]."showthread.php?t=".$newtid[threadid]."]".$dcs_mkr[4]."[/url]";}}
// ###### END DISCUSSION MAKER CREATE ######
This construct
PHP Code:
.$vboptions[homeurl]."
makes links like:
http://www.url.comshowthread.php
There is a / missing and also the forum directory.
For example:
My board must have this link:
http://www.url.com/forum/showthread.php
I changed this:
PHP Code:
$_POST['message']=$_POST['message']."\n [url=".$vboptions[homeurl]."showthread.php?t=".$newtid[threadid]."]".$dcs_mkr[4]."[/url]";}}
// ###### END DISCUSSION MAKER CREATE ######
to:
PHP Code:
$_POST['message']=$_POST['message']."\n [url=".$vboptions[homeurl]."/forum/showthread.php?t=".$newtid[threadid]."]".$dcs_mkr[4]."[/url]";}}
// ###### END DISCUSSION MAKER CREATE ######
which is working fine for me.
If another user has installed his board in
http://www.url.com/board change
the above /forum/ to /board/