summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/noticewrapper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/noticewrapper.php b/lib/noticewrapper.php
index fbf7b59f4..0d65f1da0 100644
--- a/lib/noticewrapper.php
+++ b/lib/noticewrapper.php
@@ -44,7 +44,7 @@ class NoticeWrapper {
static $fields = array('id', 'profile_id', 'uri', 'content', 'rendered',
'url', 'created', 'modified', 'reply_to', 'is_local', 'source');
$this->i++;
- if ($this->i >= array_count($notices)) {
+ if ($this->i >= count($notices)) {
return false;
} else {
$n = $notices[$this->i];