1
Hi ...
I am a newbie to XOOPs & and idiot about PHP ... but just worked with "phppp (D.J.)" on the dev site to fix a problem I was having with the top menu popups being always fully extended on the new newbb 2.02.
It seems Reynaldos ShortURLs is the problem ...
To fix the problem caused in newbb 2.02 ... open the newbb module ... and edit the header.php file
The original looks like this from about line 36 to line 42
if(!empty($xoopsModuleConfig['pngforie_enabled'])){
$newbb_module_header .= '';
}
$newbb_module_header .= '
';
Change to
if(!empty($xoopsModuleConfig['pngforie_enabled'])){
$newbb_module_header .= '';
}
$newbb_module_header .= '
.XOOPS_URL.'/modules/newbb/newbb.css" />
';
Basically the
'.XOOPS_URL.'/modules/newbb/ has to be added to the "file calls"
Making those changes fixed my problem with newbb
But now I am wondering how many more modules I am going to have to modify in the same way
Anyway ... hope I explained things good enough.
Take care
Peter
[Edited by Mithrandir : replacing phpbb with newbb to avoid confusion as newbb no longer has any connection with phpbb]