mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
Fix deprecated ${var} syntax
This commit is contained in:
parent
81daa1fa17
commit
30493947d8
3 changed files with 10 additions and 6 deletions
|
|
@ -153,7 +153,7 @@ class TemplateHandler
|
|||
$error_message = vsprintf('Template not found: %s%s%s', array(
|
||||
$tpl_path,
|
||||
preg_replace('/\.html$/i', '', $tpl_filename) . '.html',
|
||||
$tpl_file ? " (${tpl_file})" : '',
|
||||
$tpl_file ? " ($tpl_file)" : '',
|
||||
));
|
||||
trigger_error($error_message, \E_USER_WARNING);
|
||||
return escape($error_message);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue