diff options
author | Cash Costello <cash.costello@gmail.com> | 2012-01-22 14:42:30 -0500 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2012-01-22 14:42:30 -0500 |
commit | 87a511a0c7c96b15d227cf36dd547e1bdff95107 (patch) | |
tree | 57e7c32b5a5b5a054d7e94d5cecaef72c0f215c5 /views/default/page | |
parent | 6d0991b93c251473bc37a06bd383c362f9d396a9 (diff) | |
download | elgg-87a511a0c7c96b15d227cf36dd547e1bdff95107.tar.gz elgg-87a511a0c7c96b15d227cf36dd547e1bdff95107.tar.bz2 |
Fixes #4320 updated documentation for base_url in pagination and added backward compatible code
Diffstat (limited to 'views/default/page')
-rw-r--r-- | views/default/page/components/list.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/default/page/components/list.php b/views/default/page/components/list.php index c0db50bc5..28c907ab6 100644 --- a/views/default/page/components/list.php +++ b/views/default/page/components/list.php @@ -40,7 +40,7 @@ $nav = ""; if ($pagination && $count) { $nav .= elgg_view('navigation/pagination', array( - 'baseurl' => $base_url, + 'base_url' => $base_url, 'offset' => $offset, 'count' => $count, 'limit' => $limit, |