diff options
author | z0rglub <z0rglub@piwigo.org> | 2004-01-24 22:56:41 +0000 |
---|---|---|
committer | z0rglub <z0rglub@piwigo.org> | 2004-01-24 22:56:41 +0000 |
commit | c882b2691591950624a6553811fdeda91aa50b04 (patch) | |
tree | fdc09b6fa74a3bf3e4abad4a90bb98c03b4355a9 | |
parent | d92002f922b9b10fc394c49572f53927c62430f2 (diff) |
bug correction : no filename displayed when containing forbidden characters
git-svn-id: http://piwigo.org/svn/branches/release-1_3@318 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r-- | admin/update.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/update.php b/admin/update.php index ddeeae98c..7ec873ac3 100644 --- a/admin/update.php +++ b/admin/update.php @@ -320,7 +320,7 @@ function insert_local_image( $dir, $category_id ) } else { - $output.= '<span style="color:red;">"'.$file.'" : '; + $output.= '<span style="color:red;">"'.$unregistered_picture.'" : '; $output.= $lang['update_wrong_dirname'].'</span><br />'; } } |