1
Hi,
I need to add a page break at the top & bottom of the register form as it isn't spaced correctly for my site.
I think its this bit of code in register.php but not sure how to add it precicley?
case 'newuser':
include 'header.php';
$stop = '';
if (!$GLOBALS['xoopsSecurity']->check()) {
$stop .= implode('
', $GLOBALS['xoopsSecurity']->getErrors())."
";
}
if ($xoopsConfigUser['reg_dispdsclmr'] != 0 && $xoopsConfigUser['reg_disclaimer'] != '') {
if (empty($agree_disc)) {
$stop .= _US_UNEEDAGREE.'
';
TIA