Bug report -- upgrading to 1.0.6
Posted: 30 Oct 2006, 17:33
I feel silly not knowing where to post a bug report for software that's used to report bugs, but I hope you'll excuse that I'm in a hurry and don't want to fail to report this _somewhere_.
I've found, while attempting to upgrade from 0.18 to 1.06, that I needed
to edit the select command in upgrade_inc.php:UpgradeSet->is_applied() from:
$query = "SELECT COUNT(*)
FROM $t_upgrade_table
WHERE upgrade_id = '$this->id'";
to:
$query = "SELECT COUNT(*)
FROM $t_upgrade_table
WHERE upgrade_id like '$this->id'";
I've found, while attempting to upgrade from 0.18 to 1.06, that I needed
to edit the select command in upgrade_inc.php:UpgradeSet->is_applied() from:
$query = "SELECT COUNT(*)
FROM $t_upgrade_table
WHERE upgrade_id = '$this->id'";
to:
$query = "SELECT COUNT(*)
FROM $t_upgrade_table
WHERE upgrade_id like '$this->id'";