wrap globs so that false doesn't blow them up

This commit is contained in:
John Bintz 2009-10-14 07:48:31 -04:00
parent 1f3e3ae38c
commit 5a44c08527
2 changed files with 9 additions and 4 deletions

View File

@ -49,6 +49,11 @@ class WhatDidTheySayAdmin {
// just in case things need to be unit tested...
function get_filters_dir() { return WP_CONTENT_DIR . '/transcript-filters'; }
function _get_abspath() { return ABSPATH; }
function _glob($pattern) {
$result = glob($pattern);
if ($result === false) { $result = array(); }
return $result;
}
/**
* Initialize the object.
@ -108,7 +113,7 @@ class WhatDidTheySayAdmin {
$filter_to_use = preg_replace('#[^a-z0-9_-]#', '', strtolower($filter_to_use));
if (isset($all_filters[$filter_to_use])) {
foreach (glob($all_filters[$filter_to_use] . '/*') as $file) {
foreach ($this->_glob($all_filters[$filter_to_use] . '/*') as $file) {
if (preg_match('#\.(php|inc)$#', $file) > 0) { $this->override_filter_info['php'] = $file; }
if (preg_match('#\.(css)$#', $file) > 0) { $this->override_filter_info['css'] = $file; }
}
@ -873,10 +878,10 @@ class WhatDidTheySayAdmin {
foreach ($search_path as $target) {
if (is_dir($target)) {
foreach (glob($target . '/*') as $dir) {
foreach ($this->_glob($target . '/*') as $dir) {
if (is_dir($dir)) {
if (basename($dir) == preg_replace('#[^a-z0-9_-]#', '', strtolower(basename($dir)))) {
foreach (glob($dir . '/*') as $file) {
foreach ($this->_glob($dir . '/*') as $file) {
if (preg_match('#^(.*)\.(inc|php)$#', basename($file), $matches) > 0) {
$available_filters[basename($dir)] = $dir;
}

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: what-did-they-say 0.9.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-10-13 23:03-0400\n"
"POT-Creation-Date: 2009-10-14 07:39-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"