Skip to content

Commit 771f572

Browse files
committed
Merge pull request abraham#7 from kinoute/patch-1
Remove unnecessary comma
2 parents 6883b6c + 951a881 commit 771f572

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ <h3>Media</h3>
134134
$media2 = $connection->upload('media/upload', ['media' => '/path/to/file/kitten2.jpg']);
135135
$parameters = [
136136
'status' => 'Meow Meow Meow',
137-
'media_ids' => implode(',', [$media1->media_id_string, $media2->media_id_string]),
137+
'media_ids' => implode(',', [$media1->media_id_string, $media2->media_id_string])
138138
];
139139
$result = $connection->post('statuses/update', $parameters);
140140
</pre>

0 commit comments

Comments
 (0)