From: Zach Copley Date: Thu, 1 Oct 2009 00:11:22 +0000 (-0700) Subject: Fix: last modified header wasn't showing X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c5f33cc6c26cc10dbcf2f1d3104875ad694f2256;p=quix0rs-gnu-social.git Fix: last modified header wasn't showing --- diff --git a/actions/apishow.php b/actions/apishow.php index d17cc8c95d..952c7f593b 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;