XOOPS: XOOPS 2.2.3 Released

Posted by: MithrandirOn 2005/8/26 10:48:55 43933 reads
The XOOPS Core Development Team is happy to release XOOPS 2.2.3 with several bugfixes to central areas of the system.

XOOPS 2.2.3 Full

XOOPS 2.2.2 to 2.2.3 Patch

XOOPS 2.2.0 to 2.2.3 Patch

At the same time, it gives me great pleasure to announce the release of XOOPS Official Module Packages version 1.0

The modules in these packages are tested with XOOPS 2.2 and are functional. There may be parts of some of the modules that don't work, but they are usable for generating content.

As module developments proceed, these packages will naturally be updated with new versions and/or replacement modules.

Unfortunately, some problems have already surfaced with this version. The most severe one has to do with login trouble and the fix is to replace
class/auth/authfactory.php lines 27 to 31 like this:
[d]
[
color=ff0000]
if (!
$config) { // If there is a config error, we use xoops
    
$xoops_auth_method 'xoops';
} else {
    
$xoops_auth_method $config[0]->getVar('conf_value');
}
[/
color][/d]
if (!
$config) { // If there is a config error, we use xoops
    
$xoops_auth_method 'xoops';
} else {
    
$xoops_auth_method $config[0]->getConfValueForOutput();
    if(!
is_readableXOOPS_ROOT_PATH.'/class/auth/auth_' $xoops_auth_method '.php')){
        
$xoops_auth_method 'xoops';
    }
}