diff options
author | Zach Copley <zach@status.net> | 2009-09-30 10:27:54 -0700 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2009-09-30 10:27:54 -0700 |
commit | 1e7939cc4857db1109df40979bd475d4c0da48e9 (patch) | |
tree | 3ca1d992bc4cfeb1cb947100c9b654d3f09b71b3 /actions | |
parent | e307adfbfc44e653ee2b5b94dcf7eabdc8ffe0df (diff) |
Left opening double quotes off Etag
Diffstat (limited to 'actions')
-rw-r--r-- | actions/apifriendstimeline.php | 2 | ||||
-rw-r--r-- | actions/apimentions.php | 2 | ||||
-rw-r--r-- | actions/apipublictimeline.php | 2 | ||||
-rw-r--r-- | actions/apiusertimeline.php | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/actions/apifriendstimeline.php b/actions/apifriendstimeline.php index 520516016..1e88d1c2b 100644 --- a/actions/apifriendstimeline.php +++ b/actions/apifriendstimeline.php @@ -232,7 +232,7 @@ class ApiFriendsTimelineAction extends ApiBareAuthAction $last = count($this->notices) - 1; - return implode( + return '"' . implode( ':', array($this->arg('action'), common_language(), diff --git a/actions/apimentions.php b/actions/apimentions.php index 2b2e27f20..43e93a9c6 100644 --- a/actions/apimentions.php +++ b/actions/apimentions.php @@ -217,7 +217,7 @@ class ApiMentionsAction extends ApiBareAuthAction $last = count($this->notices) - 1; - return implode( + return '"' . implode( ':', array($this->arg('action'), common_language(), diff --git a/actions/apipublictimeline.php b/actions/apipublictimeline.php index 63cb0cbaf..2be979e6d 100644 --- a/actions/apipublictimeline.php +++ b/actions/apipublictimeline.php @@ -191,7 +191,7 @@ class ApiPublicTimelineAction extends TwitterapiAction $last = count($this->notices) - 1; - return implode( + return '"' . implode( ':', array($this->arg('action'), common_language(), diff --git a/actions/apiusertimeline.php b/actions/apiusertimeline.php index 1c6961313..44d69415b 100644 --- a/actions/apiusertimeline.php +++ b/actions/apiusertimeline.php @@ -232,7 +232,7 @@ class ApiUserTimelineAction extends ApiBareAuthAction $last = count($this->notices) - 1; - return implode( + return '"' . implode( ':', array($this->arg('action'), common_language(), |