12
@xoobaru:
Yes. unfortunately the new SVN system have this limitation. you have to use a tool like tortoise SVN.
latest Alfred: 10120
latest irmtfan: 10648 ( but i will commit today)
@flipse:
I show you what was the root of the issue in Alfred version was that commit. To fix it you need to revert that commit and back those line. so in newbb/header.php you should add:
$pollmodules = NULL;
//$module_handler = &xoops_gethandler('module');
$xoopspoll = &$module_handler->getByDirname('xoopspoll');
if (is_object($xoopspoll) && $xoopspoll->getVar('isactive')) {
$pollmodules = 'xoopspoll';
} else {
//Umfrage
$xoopspoll = &$module_handler->getByDirname('umfrage');
if (is_object($xoopspoll) && $xoopspoll->getVar('isactive'))
$pollmodules = 'umfrage';
}
at the end of the file right above $xoopsLogger->stopTime('newBB_Header');
IMO we can do it in a cleaner way. I mean checking the existence of a poll module can be done in one place.
Quote:
to build one fantastic newbb branche?
IMO concerning the current features NEWBB is fantastic right now. It has all features a professional forum like VB has. Only one important feature is missing:
a like/thank you system which need to build a separate module for the whole xoops like what is done by tag module.