From: CiaranG Date: Thu, 5 Mar 2009 16:23:39 +0000 (+0000) Subject: Fixed bad field name in oauthstore. (fix submitted by oxygene) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3087e4ad5dfbccb7218c12ca747e1dbcf3a6415c;p=quix0rs-gnu-social.git Fixed bad field name in oauthstore. (fix submitted by oxygene) --- diff --git a/lib/oauthstore.php b/lib/oauthstore.php index 7ad3be20e2..9af05ea2de 100644 --- a/lib/oauthstore.php +++ b/lib/oauthstore.php @@ -63,7 +63,7 @@ class LaconicaOAuthDataStore extends OAuthDataStore if ($n->find(true)) { return true; } else { - $n->timestamp = $timestamp; + $n->ts = $timestamp; $n->created = DB_DataObject_Cast::dateTime(); $n->insert(); return false;