mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-21 23:20:22 +00:00
Fix: evaluate pluginName in renderTemplate
This commit is contained in:
parent
b33ac6ffa3
commit
4e71a6e753
1 changed files with 1 additions and 1 deletions
|
@ -544,7 +544,7 @@ function ConvertToSecurity($security)
|
|||
*/
|
||||
function renderTemplate($name, $__template_data = [], $pluginName = null)
|
||||
{
|
||||
if (isset($pluginName)) {
|
||||
if (is_string($pluginName)) {
|
||||
$file = realpath(dirname(__FILE__) . "/../plugins/$pluginName/templates/$name.php");
|
||||
} else {
|
||||
$file = realpath(dirname(__FILE__) . "/../templates/$name.php");
|
||||
|
|
Loading…
Reference in a new issue