missing =

This commit is contained in:
skeeter 2000-11-19 20:01:01 +00:00
parent 4a2f2cba77
commit 7fed7dc46a
2 changed files with 12 additions and 12 deletions

View File

@ -330,16 +330,16 @@
update_version_table();
}
if ($currentver == "0.9.4pre3") {
if ($currentver == "0.9.4pre3") {
$sql = "ALTER TABLE todo ADD todo_startdate int(11) not null";
$db->query($sql);
$sql "ALTER TABLE todo CHANGE todo_datedue todo_enddate int(11) not null";
$db->query($sql);
$sql = "ALTER TABLE todo CHANGE todo_datedue todo_enddate int(11) not null";
$db->query($sql);
$currentver = "0.9.4pre4";
update_version_table();
}
$currentver = "0.9.4pre4";
update_version_table();
}
echo " <tr bgcolor=\"e6e6e6\">\n";
echo " <td>Upgrade from 0.9.3 to $currentver is completed.</td>\n";
echo " </tr>\n";

View File

@ -331,16 +331,16 @@
update_version_table();
}
if ($currentver == "0.9.4pre3") {
if ($currentver == "0.9.4pre3") {
$sql = "ALTER TABLE todo ADD todo_startdate int not null";
$db->query($sql);
$sql "ALTER TABLE todo CHANGE todo_datedue todo_enddate int not null";
$db->query($sql);
$sql = "ALTER TABLE todo CHANGE todo_datedue todo_enddate int not null";
$db->query($sql);
$currentver = "0.9.4pre4";
update_version_table();
}
$currentver = "0.9.4pre4";
update_version_table();
}
echo " <tr bgcolor=\"e6e6e6\">\n";
echo " <td>Upgrade from 0.9.3 to $currentver is completed.</td>\n";
echo " </tr>\n";