00920: Bug with $DefaultGroup / $DefaultName in pmwiki21

Summary: Bug with $DefaultGroup / $DefaultName in pmwiki21
Created: 2007-05-06 09:24
Status: Closed
Category: Bug
From: isidor
Assigned:
Priority:
Version: Pmwiki 2.1 latest stable
OS: N/A

Description:

Closed by upgrading to PmWikiV2.2b

Hi

Whe have a wikiFarm serving 90 Wiki's in the FarmConfig we have defined $DefaultGroup="Accueil" and $DefaultName="Accueil"

In config.phpp we try to do the following

if ($_SERVER[SERVER_NAME]=='baldes508.gadz.org') {
  $WikiTitle = "Bal des 508";
  $DefaultGroup = 'BalDes508';
  $DefaultName  = 'Accueil';
  $Skin = "wikigadz";

} elseif($_SERVER[SERVER_NAME]=='baldubapts.gadz.org') {
  $WikiTitle = "Bal du Bapts";
  $DefaultGroup = 'BalDuBapts';
  $DefaultName  = 'Accueil';

} elseif($_SERVER[SERVER_NAME]=='100jours.gadz.org') {
  $WikiTitle = "Bal des 100 jours";
  $DefaultGroup = 'BalDes100Jours';
  $DefaultName  = 'Accueil';
  $Skin = "ggkin100j07";

} else {
  $WikiTitle = "Galas de KIN";
  $DefaultGroup = 'Accueil';
  $DefaultName  = 'Accueil';
}

But this was not working, we try to upgrade this field to the latest 2.2Beta (45) and it works

Could it be possible to correct the issue on PmWiki21, please ?

Regards