diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-06-20 20:59:07 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-06-20 20:59:07 +0000 |
commit | 93ee973d635385d39fcad58ad934748cd80a8a6e (patch) | |
tree | d3174ad228da2bb2d4fce49f917d4cb1045e9186 | |
parent | 1bf62f1bc10831d559df147868dd889e5985adcc (diff) | |
download | elgg-93ee973d635385d39fcad58ad934748cd80a8a6e.tar.gz elgg-93ee973d635385d39fcad58ad934748cd80a8a6e.tar.bz2 |
tweaked previous and next controls
-rw-r--r-- | languages/en.php | 2 | ||||
-rw-r--r-- | views/default/object/image.php | 4 | ||||
-rw-r--r-- | views/default/tidypics/css.php | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/languages/en.php b/languages/en.php index 135344d6d..9d39c64c6 100644 --- a/languages/en.php +++ b/languages/en.php @@ -90,7 +90,7 @@ 'album:by' => "Album created by",
'album:created:on' => "Created",
'image:none' => "No images have been added yet.",
- 'image:back' => "Back",
+ 'image:back' => "Previous",
'image:next' => "Next",
// tagging
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 { |