X-Git-Url: https://git.p6c8.net/jirafeau_mojo42.git/blobdiff_plain/9cb2631b8ac5fd7c0de6df67d259209eece25305..108eff381440ad1501b5a3cd1b3b5bfbec813b96:/lib/functions.php diff --git a/lib/functions.php b/lib/functions.php index 9fa0e5e..8af3801 100644 --- a/lib/functions.php +++ b/lib/functions.php @@ -553,13 +553,13 @@ function jirafeau_admin_list($name, $file_hash, $link_hash) { echo '
'; if (!empty($name)) { - echo t('FILENAME') . ": $name "; + echo t('FILENAME') . ": " . jirafeau_escape($name); } if (!empty($file_hash)) { - echo t('FILE') . ": $file_hash "; + echo t('FILE') . ": " . jirafeau_escape($file_hash); } if (!empty($link_hash)) { - echo t('LINK') . ": $link_hash "; + echo t('LINK') . ": " . jirafeau_escape($link_hash); } if (empty($name) && empty($file_hash) && empty($link_hash)) { echo t('LS_FILES'); @@ -597,7 +597,7 @@ function jirafeau_admin_list($name, $file_hash, $link_hash) } /* Filter. */ - if (!empty($name) && !preg_match("/$name/i", jirafeau_escape($l['file_name']))) { + if (!empty($name) && !@preg_match("/$name/i", jirafeau_escape($l['file_name']))) { continue; } if (!empty($file_hash) && $file_hash != $l['md5']) {