summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-09-15 03:09:51 -0400
committerEvan Prodromou <evan@prodromou.name>2008-09-15 03:09:51 -0400
commitdf724990bdd89a222eb7d5a437f291e7a0926fa7 (patch)
tree7f26a8a0cbd764f314fbb7d2c487ca5026a62411 /lib
parent1806469ba256c1858b7ebe3da9121ad590abae4d (diff)
array_count -> count
darcs-hash:20080915070951-84dde-be26f8844c884b0210cfd6165fd3403ce760195e.gz
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];