Skip to content
Snippets Groups Projects
Commit 503348a8 authored by Bastian Waidelich's avatar Bastian Waidelich
Browse files

[+BUGFIX] Fluid (View): Fixed deprecation message about lowercase template files names

Fixes #10975
parent 8e9b8335
No related merge requests found
......@@ -191,9 +191,9 @@ class Tx_Fluid_View_TemplateView extends Tx_Fluid_View_AbstractTemplateView {
}
break;
} elseif (file_exists($fallbackPath)) {
t3lib_div::deprecationLog('the template filename "' . $fallbackPath . '" is lowercase. This is deprecated since TYPO3 4.4. Please rename the template to "' . basename($templatePathAndFilename) . '"');
$found = TRUE;
$templatePathAndFilename = $fallbackPath;
t3lib_div::deprecationLog('the template filename "' . $fallbackPath . '" is lowercase. This is deprecated since TYPO3 4.4. Please rename the template to "' . basename($templatePathAndFilename) . '"');
break;
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment