summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2009-09-30 17:11:22 -0700
committerZach Copley <zach@status.net>2009-09-30 17:11:22 -0700
commitc5f33cc6c26cc10dbcf2f1d3104875ad694f2256 (patch)
treebfb0b92b27056c18a04c862453c2acb85554a069 /actions
parent8b8e0c95af8efe656c3c7a67153117ba8128456e (diff)
Fix: last modified header wasn't showing
Diffstat (limited to 'actions')
-rw-r--r--actions/apishow.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/apishow.php b/actions/apishow.php
index d17cc8c95..952c7f593 100644
--- a/actions/apishow.php
+++ b/actions/apishow.php
@@ -161,7 +161,7 @@ class ApiShowAction extends TwitterapiAction
function lastModified()
{
if (!empty($this->notice)) {
- return strtotime($this->notices->created);
+ return strtotime($this->notice->created);
}
return null;