You are here

function Disqus::get_updated_threads in Disqus 7

Get a list of threads with new comments.

Parameters

$forum_id: The Forum ID.

$since: Start date for new posts. Format: 2009-03-30T15:41, Timezone: UTC.

File

./disqus.php, line 149
Provides the Disqus PHP API.

Class

Disqus
The Disqus PHP API.

Code

function get_updated_threads($forum_id, $since) {
  return $this
    ->call('get_updated_threads', array(
    'forum_id' => $forum_id,
    'since' => $since,
  ));
}