From 7a5ec916b4963c47b23b56d11bb2058bc823b70a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marcin=20Cie=C5=9Blak?= Date: Mon, 12 Mar 2012 19:35:38 +0000 Subject: [PATCH] Fix r113619: Convert timestamp to the backend database value --- includes/User.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/User.php b/includes/User.php index 3c4557e792..997e6942a3 100644 --- a/includes/User.php +++ b/includes/User.php @@ -2917,7 +2917,7 @@ class User { 'user_token' => $this->mToken, 'user_registration' => $dbw->timestamp( $this->mRegistration ), 'user_editcount' => 0, - 'user_touched' => $this->mTouched, + 'user_touched' => $dbw->timestamp( $this->mTouched ), ), __METHOD__ ); $this->mId = $dbw->insertId(); -- 2.20.1