Skip to content
Snippets Groups Projects
Commit 3cfcfdac authored by Gábor Hojtsy's avatar Gábor Hojtsy
Browse files

#211403 by dww: Removed fallback code for determining the project based on the directory.

parent af9b327e
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -49,6 +49,11 @@ function _update_process_info_list(&$projects, &$list, $project_type) { ...@@ -49,6 +49,11 @@ function _update_process_info_list(&$projects, &$list, $project_type) {
$file->info['project'] = update_get_project_name($file); $file->info['project'] = update_get_project_name($file);
} }
// If we still don't know the 'project', give up.
if (empty($file->info['project'])) {
continue;
}
// If we don't already know it, grab the change time on the .info file // If we don't already know it, grab the change time on the .info file
// itself. Note: we need to use the ctime, not the mtime (modification // itself. Note: we need to use the ctime, not the mtime (modification
// time) since many (all?) tar implementations will go out of their way to // time) since many (all?) tar implementations will go out of their way to
...@@ -99,19 +104,6 @@ function update_get_project_name($file) { ...@@ -99,19 +104,6 @@ function update_get_project_name($file) {
// so we must hard-code a list here. // so we must hard-code a list here.
$project_name = 'drupal'; $project_name = 'drupal';
} }
else {
// This isn't part of core, so guess the project from the directory.
$last = '';
foreach (array_reverse(explode('/', $file->filename)) as $dir) {
if ($dir == 'modules' || $dir == 'themes') {
break;
}
$last = $dir;
}
if ($last) {
$project_name = $last;
}
}
return $project_name; return $project_name;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment