bugfix: string value "0" was incorrectly handled, when displaying or entering data
bugfix: rackspace allocation history recording did not work in 0.17.0
bugfix: boolean expressions parsing in RackCode now honours priorities
+ bugfix: upgrade script could fail sometimes
update: removed unused database index
0.17.0 2009-05-20
new feature: file attachments (by Aaron)
{
header ('WWW-Authenticate: Basic realm="RackTables upgrade"');
header ('HTTP/1.0 401 Unauthorized');
- showError ('You must be authenticated as an administrator to complete the upgrade.', __FILE__);
+ showFailure ('You must be authenticated as an administrator to complete the upgrade.', __FILE__);
die;
}
break; // cleared
!strlen ($_SERVER['REMOTE_USER'])
)
{
- showError ('System misconfiguration. The web-server didn\'t authenticate the user, although ought to do.');
+ showFailure ('System misconfiguration. The web-server didn\'t authenticate the user, although ought to do.');
die;
}
break; // cleared
default:
- showError ('authentication source misconfiguration', __FILE__);
+ showFailure ('authentication source misconfiguration', __FILE__);
die;
}