php8 fix
Dieser Commit ist enthalten in:
Ursprung
2e8a56d679
Commit
bdd28a6203
2 geänderte Dateien mit 3 neuen und 4 gelöschten Zeilen
|
@ -21,5 +21,4 @@ return array(
|
||||||
'cSmartyBackend' => $sAutoloadClassPath.'class.smarty.backend.php',
|
'cSmartyBackend' => $sAutoloadClassPath.'class.smarty.backend.php',
|
||||||
'cSmartyFrontend' => $sAutoloadClassPath.'class.smarty.frontend.php',
|
'cSmartyFrontend' => $sAutoloadClassPath.'class.smarty.frontend.php',
|
||||||
'cSmartyWrapper' => $sAutoloadClassPath.'class.smarty.wrapper.php'
|
'cSmartyWrapper' => $sAutoloadClassPath.'class.smarty.wrapper.php'
|
||||||
);
|
);
|
||||||
?>
|
|
|
@ -1,4 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
|
global $load_client;
|
||||||
/**
|
/**
|
||||||
* This file is the config file for this plugin
|
* This file is the config file for this plugin
|
||||||
*
|
*
|
||||||
|
@ -33,5 +34,4 @@ try {
|
||||||
new cSmartyFrontend(cRegistry::getConfig(), cRegistry::getClientConfig(cRegistry::getClientId()), true);
|
new cSmartyFrontend(cRegistry::getConfig(), cRegistry::getClientConfig(cRegistry::getClientId()), true);
|
||||||
} catch (Exception $e) {
|
} catch (Exception $e) {
|
||||||
cWarning($e->getFile(), $e->getLine(), $e->getMessage());
|
cWarning($e->getFile(), $e->getLine(), $e->getMessage());
|
||||||
}
|
}
|
||||||
?>
|
|
Laden …
In neuem Issue referenzieren