diff options
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,  | 
