Skip to content

Commit

Permalink
Parameters for thread_by_identifier() call were incorrect
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Jackson authored and Oliver Jackson committed Aug 16, 2010
1 parent 08d89d2 commit 24c2e49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion disqus/disqus.php
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ function thread_by_identifier($identifier, $title, $params=array()) {
$params['identifier'] = $identifier;
$params['title'] = $title;

return $this->call('POST', 'thread_by_identifier', $params);
return $this->call('thread_by_identifier', $params, true);
}

/**
Expand Down

0 comments on commit 24c2e49

Please sign in to comment.