diff options
-rw-r--r-- | views/default/river/item/list.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/default/river/item/list.php b/views/default/river/item/list.php index 127d1cdd9..08f8d455d 100644 --- a/views/default/river/item/list.php +++ b/views/default/river/item/list.php @@ -26,7 +26,7 @@ $urladdition = 'offset='.$newoffset;
if (substr_count($baseurl,'?')) $nexturl=$baseurl . '&' . $urladdition; else $nexturl=$baseurl . '?' . $urladdition;
- $nav .= '<a class="back" href="'.$nexturl.'">' . elgg_echo('previous') . '</a> ';
+ $nav .= '<a class="back" href="'.$nexturl.'">« ' . elgg_echo('previous') . '</a> ';
}
if ($vars['offset'] > 0) {
@@ -35,7 +35,7 @@ $urladdition = 'offset='.$newoffset;
if (substr_count($baseurl,'?')) $prevurl=$baseurl . '&' . $urladdition; else $prevurl=$baseurl . '?' . $urladdition;
- $nav .= '<a class="forward" href="'.$prevurl.'">' . elgg_echo('next') . '</a> ';
+ $nav .= '<a class="forward" href="'.$prevurl.'">' . elgg_echo('next') . ' »</a> ';
}
|