Skip to content

Commit

Permalink
Fixed issue: Error on upload in template editor
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Mar 24, 2017
1 parent c013967 commit 78fda12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/helpers/sanitize_helper.php
Expand Up @@ -131,7 +131,7 @@ function sanitize_filename($filename, $force_lowercase = true, $alphanumeric = f
(function_exists('mb_strtolower')) ?
mb_strtolower($filename, 'UTF-8') :
strtolower($filename) :
$clean;
$filename;
}

function beautify_filename($filename) {
Expand Down

0 comments on commit 78fda12

Please sign in to comment.