diff options
author | CiaranG <ciaran@ciarang.com> | 2009-03-05 16:23:39 +0000 |
---|---|---|
committer | CiaranG <ciaran@ciarang.com> | 2009-03-05 16:23:39 +0000 |
commit | 3087e4ad5dfbccb7218c12ca747e1dbcf3a6415c (patch) | |
tree | 017d82ec80d64cbd26592e314d38ef97e37c832c /lib/oauthstore.php | |
parent | 3c53e821cc545d14807c9197d07e8686028a846d (diff) |
Fixed bad field name in oauthstore. (fix submitted by oxygene)
Diffstat (limited to 'lib/oauthstore.php')
-rw-r--r-- | lib/oauthstore.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/oauthstore.php b/lib/oauthstore.php index 7ad3be20e..9af05ea2d 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; |