Make sure plugins and themes are readable. Props Mike Little. fixes #1502

git-svn-id: http://svn.automattic.com/wordpress/trunk@3103 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2005-11-16 03:27:22 +00:00
parent b6f44dc532
commit 005dce9352
2 changed files with 8 additions and 0 deletions

View File

@ -1449,6 +1449,9 @@ function get_plugins() {
sort($plugin_files);
foreach ($plugin_files as $plugin_file) {
if ( !is_readable("$plugin_root/$plugin_file"))
continue;
$plugin_data = get_plugin_data("$plugin_root/$plugin_file");
if (empty ($plugin_data['Name'])) {

View File

@ -1686,6 +1686,11 @@ function get_themes() {
sort($theme_files);
foreach($theme_files as $theme_file) {
if ( ! is_readable("$theme_root/$theme_file") ) {
$wp_broken_themes[$theme_file] = array('Name' => $theme_file, 'Title' => $theme_file, 'Description' => __('File not readable.'));
continue;
}
$theme_data = get_theme_data("$theme_root/$theme_file");
$name = $theme_data['Name'];