From c5f33cc6c26cc10dbcf2f1d3104875ad694f2256 Mon Sep 17 00:00:00 2001
From: Zach Copley <zach@status.net>
Date: Wed, 30 Sep 2009 17:11:22 -0700
Subject: Fix: last modified header wasn't showing

---
 actions/apishow.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;
-- 
cgit v1.2.3-54-g00ecf