Skip to content
Snippets Groups Projects
Commit b86df33b authored by Neil Drumm's avatar Neil Drumm :wave:
Browse files

#97941 by havran. Remove a trailing slash which confuses certain versions of PHP.

parent 599fe089
Branches
Tags
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
......@@ -211,12 +211,13 @@ function color_scheme_form_submit($form_id, $values) {
// Prepare target locations for generated files
$id = $theme .'-'. substr(md5(serialize($palette) . microtime()), 0, 8);
$paths['color'] = variable_get('file_directory_path', 'files') .'/color';
$paths['target'] = $paths['color'] .'/'. $id .'/';
$paths['target'] = $paths['color'] .'/'. $id;
foreach ($paths as $path) {
if (!is_dir($path)) {
mkdir($path);
}
}
$paths['target'] = $paths['target'] .'/';
$paths['id'] = $id;
$paths['source'] = drupal_get_path('theme', $theme) .'/';
$paths['stylesheet'] = $paths['target'] .'style.css';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment