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 | |
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')
-rw-r--r-- | views/default/navigation/pagination.php | 5 | ||||
-rw-r--r-- | views/default/page/components/list.php | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/views/default/navigation/pagination.php b/views/default/navigation/pagination.php index ad4689d83..e0d355327 100644 --- a/views/default/navigation/pagination.php +++ b/views/default/navigation/pagination.php @@ -8,7 +8,7 @@ * @uses int $vars['offset'] The offset in the list * @uses int $vars['limit'] Number of items per page * @uses int $vars['count'] Number of items in list - * @uses string $vars['baseurl'] Base URL to use in links + * @uses string $vars['base_url'] Base URL to use in links * @uses string $vars['offset_key'] The string to use for offet in the URL */ @@ -28,6 +28,9 @@ $offset_key = elgg_extract('offset_key', $vars, 'offset'); // some views pass an empty string for base_url if (isset($vars['base_url']) && $vars['base_url']) { $base_url = $vars['base_url']; +} else if (isset($vars['baseurl']) && $vars['baseurl']) { + elgg_deprecated_notice("Use 'base_url' instead of 'baseurl' for the navigation/pagination view", 1.8); + $base_url = $vars['baseurl']; } else { $base_url = current_page_url(); } 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, |