diff options
author | Bharat Mediratta <bharat@menalto.com> | 2012-05-13 21:09:26 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2012-05-13 21:09:59 -0700 |
commit | ffbaa7bf82750814b6b31c8c83ee11ad25a41196 (patch) | |
tree | 34f4df8ac831cbf159ba07085ca5ba4fb43a251c /modules/gallery/helpers | |
parent | d1390bd87db1a7e59bbd72f5991fbbc6374c98b4 (diff) |
Follow on for #1845 - handle paths with dots in them properly.
Diffstat (limited to 'modules/gallery/helpers')
-rw-r--r-- | modules/gallery/helpers/legal_file.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/helpers/legal_file.php b/modules/gallery/helpers/legal_file.php index af6472ca..075de9cd 100644 --- a/modules/gallery/helpers/legal_file.php +++ b/modules/gallery/helpers/legal_file.php @@ -89,7 +89,7 @@ class legal_file_Core { if (strpos($filename, ".") === false) { return "{$filename}.{$new_ext}"; } else { - return preg_replace("/\..*?$/", ".{$new_ext}", $filename); + return preg_replace("/\.[^\.]*?$/", ".{$new_ext}", $filename); } } } |