From dc028ce8ba37aa80c05ade1f2d36371c41457671 Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 6 May 2013 02:17:20 -0700 Subject: fixes --- install/update.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'install') 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; - } -- cgit v1.2.3