diff options
author | z0rglub <z0rglub@piwigo.org> | 2003-05-27 20:56:13 +0000 |
---|---|---|
committer | z0rglub <z0rglub@piwigo.org> | 2003-05-27 20:56:13 +0000 |
commit | 0b6204e5fbebb7dc14bfe47e598f53d241c21b97 (patch) | |
tree | 4e457a986c6b177b6c0202b8571f9eda93afa88e /admin/update.php | |
parent | 4ac5b8f83f3b27b508be0cdf907eb8b083c251e5 (diff) |
*** empty log message ***
git-svn-id: http://piwigo.org/svn/trunk@19 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/update.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/update.php b/admin/update.php index 8684660e1..bdd4d8a43 100644 --- a/admin/update.php +++ b/admin/update.php @@ -161,7 +161,7 @@ function insert_local_image( $rep, $category_id ) while ( $row = mysql_fetch_array( $result ) ) { $lien_image = $rep.'/'.$row['file']; - $lien_thumbnail = $rep.'/thumbnail/'.$conf['prefixe_thumbnail']; + $lien_thumbnail = $rep.'/thumbnail/'.$conf['prefix_thumbnail']; $lien_thumbnail.= get_filename_wo_extension( $row['file'] ); $lien_thumbnail.= '.'.$row['tn_ext']; @@ -229,7 +229,7 @@ function insert_local_image( $rep, $category_id ) $output.= '<span style="color:red;">'; $output.= $lang['update_missing_tn'].' : '.$file; $output.= ' (<span style="font-weight:bold;">'; - $output.= $conf['prefixe_thumbnail']; + $output.= $conf['prefix_thumbnail']; $output.= get_filename_wo_extension( $file ).'.XXX</span>'; $output.= ', XXX = '; $output.= implode( ', ', $conf['picture_ext'] ); |