Quote:
Originally Posted by Puntoboy
Quote:
can't get this to work, its not displaying correctly and i've set it so it emails me the completed for but thats blank when i recieve it.
|
with this.
i can't get the forum to work.
the bottom field should be a payment field.
http://www.puntosports.co.uk/forums/...do=Application
|
try to attach you full changed
plugin.xml
but u should change this
Code:
if ($_REQUEST['action'] == '')
{
$_REQUEST['action'] = "form";
}
to this
Code:
if ($_REQUEST['action'] == '')
{
$_REQUEST['action'] = "Application";
}
and
Code:
if ($_REQUEST['action'] == 'form')
{
// set message box width to usercp size
$stylevar['messagewidth'] = $stylevar['messagewidth_usercp'];
$dontusewysiwyg = 1;
$editorid = construct_edit_toolbar();
to this
Code:
if ($_REQUEST['action'] == 'Application')
{
// set message box width to usercp size
$stylevar['messagewidth'] = $stylevar['messagewidth_usercp'];
$dontusewysiwyg = 1;
$editorid = construct_edit_toolbar();