diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-12-12 03:48:17 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-12-12 03:48:17 +0000 |
commit | ee56a5b4bdb933c61786481e000aaff626fd59d5 (patch) | |
tree | da01de3064c54a4fb0a9d3d99c627792ceb5d073 | |
parent | f3261b03dfe5ee472f8048b85a1f4b9aa776026d (diff) | |
download | elgg-ee56a5b4bdb933c61786481e000aaff626fd59d5.tar.gz elgg-ee56a5b4bdb933c61786481e000aaff626fd59d5.tar.bz2 |
increased number of image views possible
-rw-r--r-- | lib/image.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/image.php b/lib/image.php index 34b054898..0c4049183 100644 --- a/lib/image.php +++ b/lib/image.php @@ -95,7 +95,7 @@ */ public function getViews($viewer_guid) { - $views = get_annotations($this->getGUID(), "object", "image", "tp_view", "", 0, 9999); + $views = get_annotations($this->getGUID(), "object", "image", "tp_view", "", 0, 99999); if ($views) { $total_views = count($views); |