In config.php CVS file version 1.21 is a line which says:
if ($WhichDatabase == 'dbm' or 'dba' or 'default') {
This ended up always selecting the dbm/dba section instead of mysql which was what I had selected earlier. When changed to
if ($WhichDatabase == 'dbm' or $WhichDatabase =='dba' or $WhichDatabase =='default') {
things started working more as I expected them to.
I am running php4.03
Thanks for pointing this out. I have checked in a corrected version just now.
/Arno
Log in to post a comment.
In config.php CVS file version 1.21 is a line which says:
if ($WhichDatabase == 'dbm' or 'dba' or 'default') {
This ended up always selecting the dbm/dba section instead of mysql which was what I had selected earlier. When changed to
if ($WhichDatabase == 'dbm' or $WhichDatabase =='dba' or $WhichDatabase =='default') {
things started working more as I expected them to.
I am running php4.03
Thanks for pointing this out.
I have checked in a corrected version just now.
/Arno