|
|
|
@ -447,6 +447,8 @@ class rcube_output_html extends rcube_output
|
|
|
|
|
// fallback to deprecated template names
|
|
|
|
|
if (!is_readable($path) && $this->deprecated_templates[$realname]) {
|
|
|
|
|
$path = "$skin_path/templates/" . $this->deprecated_templates[$realname] . ".html";
|
|
|
|
|
|
|
|
|
|
if (is_readable($path)) {
|
|
|
|
|
rcube::raise_error(array(
|
|
|
|
|
'code' => 502, 'type' => 'php',
|
|
|
|
|
'file' => __FILE__, 'line' => __LINE__,
|
|
|
|
@ -454,6 +456,7 @@ class rcube_output_html extends rcube_output
|
|
|
|
|
. "' in $skin_path/templates. Please rename to '$realname'"),
|
|
|
|
|
true, false);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (is_readable($path)) {
|
|
|
|
|
$this->config->set('skin_path', $skin_path);
|
|
|
|
|