aboutsummaryrefslogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
Diffstat (limited to 'install')
-rw-r--r--install/update.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/install/update.php b/install/update.php
index 31857ff2d..7dbc601c8 100644
--- a/install/update.php
+++ b/install/update.php
@@ -515,11 +515,10 @@ function update_r1039() {
}
function update_r1040() {
- $r = q("ALTER TABLE `session` CHANGE `expire` `expire` BIGINT UNSIGNED NOT NULL,
- ALTER TABLE `tokens` CHANGE `expires` `expires` BIGINT UNSIGNED NOT NULL ");
+ $r1 = q("ALTER TABLE `session` CHANGE `expire` `expire` BIGINT UNSIGNED NOT NULL ");
+ $r2 = q("ALTER TABLE `tokens` CHANGE `expires` `expires` BIGINT UNSIGNED NOT NULL ");
- if($r)
+ if($r1 && $r2)
return UPDATE_SUCCESS;
return UPDATE_FAILED;
-
}