From: Marcin Cieślak Date: Mon, 12 Mar 2012 19:35:38 +0000 (+0000) Subject: Fix r113619: Convert timestamp to the backend database value X-Git-Tag: 1.31.0-rc.0~24286 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=7a5ec916b4963c47b23b56d11bb2058bc823b70a;p=lhc%2Fweb%2Fwiklou.git Fix r113619: Convert timestamp to the backend database value --- 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();