diff options
author | gweltas <gweltas@piwigo.org> | 2005-01-06 16:33:04 +0000 |
---|---|---|
committer | gweltas <gweltas@piwigo.org> | 2005-01-06 16:33:04 +0000 |
commit | 22e0536a05bbb6bca313dd05225bc4bb1963e0dc (patch) | |
tree | 89d5975d8ed2365a63b5263136c28cd3095e5e8e /picture.php | |
parent | 0d8918b7d89eac72238ac2ea990f2ec4668d9e0a (diff) |
- Group permission delivery
- Reorganisation of common.lang.php
git-svn-id: http://piwigo.org/svn/trunk@671 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'picture.php')
-rw-r--r-- | picture.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/picture.php b/picture.php index c4dd73154..6a6262407 100644 --- a/picture.php +++ b/picture.php @@ -145,7 +145,7 @@ foreach (array('prev', 'current', 'next') as $i) $cat_directory = dirname($row['path']); $file_wo_ext = get_filename_wo_extension($row['file']); - $icon = './template/'.$user['template'].'/mimetypes/'; + $icon = PHPWG_ROOT_PATH.'template/'.$user['template'].'/mimetypes/'; $icon.= strtolower(get_extension($row['file'])).'.png'; if (isset($row['representative_ext']) and $row['representative_ext'] =! '') @@ -453,7 +453,8 @@ $template->assign_vars(array( 'L_HOME' => $lang['home'], 'L_SLIDESHOW' => $lang['slideshow'], 'L_STOP_SLIDESHOW' => $lang['slideshow_stop'], - 'L_PREV_IMG' =>$lang['previous_image'].' : ', + 'L_PREV_IMG' =>$lang['previous_page'].' : ', + 'L_NEXT_IMG' =>$lang['next_page'].' : ', 'L_ADMIN' =>$lang['link_info_image'], 'L_COMMENT_TITLE' =>$lang['comments_title'], 'L_ADD_COMMENT' =>$lang['comments_add'], |