diff options
Diffstat (limited to 'views')
-rw-r--r-- | views/default/object/image.php | 4 | ||||
-rw-r--r-- | views/default/tidypics/css.php | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/views/default/object/image.php b/views/default/object/image.php index d09b721f1..9e78ece75 100644 --- a/views/default/object/image.php +++ b/views/default/object/image.php @@ -157,10 +157,10 @@ if ($photo_tags) { } if ($current != 0) - $back = '<a href="' .$vars['url'] . 'pg/photos/view/' . $_SESSION['image_sort'][$current-1] . '"><<' . elgg_echo('image:back') . '</a>'; + $back = '<a href="' .$vars['url'] . 'pg/photos/view/' . $_SESSION['image_sort'][$current-1] . '">« ' . elgg_echo('image:back') . '</a>'; if (sizeof($_SESSION['image_sort']) > $current + 1) - $next = '<a href="' . $vars['url'] . 'pg/photos/view/' . $_SESSION['image_sort'][$current+1] . '">' . elgg_echo('image:next') . '>></a>'; + $next = '<a href="' . $vars['url'] . 'pg/photos/view/' . $_SESSION['image_sort'][$current+1] . '">' . elgg_echo('image:next') . ' »</a>'; ?> diff --git a/views/default/tidypics/css.php b/views/default/tidypics/css.php index 07b02eeb1..ec4757c2c 100644 --- a/views/default/tidypics/css.php +++ b/views/default/tidypics/css.php @@ -59,7 +59,7 @@ text-align:center; #tidypics_image_nav ul li { display:inline; -margin-right:10px; +margin-right:15px; } #tidypics_image_full { |