1
0
Fork 0

Commits vergleichen

...

3 Commits

Autor SHA1 Nachricht Datum
2f80a087f9 increase version 2025-06-26 20:01:45 +02:00
bdd28a6203 php8 fix 2025-06-26 20:01:18 +02:00
2e8a56d679 add ignore 2025-06-26 20:00:56 +02:00
4 geänderte Dateien mit 8 neuen und 8 gelöschten Zeilen

1
.gitignore gevendort Normale Datei
Datei anzeigen

@ -0,0 +1 @@
.idea/*

Datei anzeigen

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<plugin> <plugin>
<general active="1"> <general active="1">
<plugin_name>Smarty Wrapper</plugin_name> <plugin_name>Smarty Wrapper</plugin_name>
@ -9,11 +9,11 @@
<copyright>(c) 2017 Ortwin Pinke, PHP-Backoffice.de</copyright> <copyright>(c) 2017 Ortwin Pinke, PHP-Backoffice.de</copyright>
<mail>info@php-backoffice.de</mail> <mail>info@php-backoffice.de</mail>
<website>http://php-backoffice.de</website> <website>http://php-backoffice.de</website>
<version>1.0.2</version> <version>1.1.0</version>
<license>GNU Lesser General Public License</license> <license>GNU Lesser General Public License</license>
</general> </general>
<requirements php="5.4"> <requirements php="8.2">
<conlite minversion="2.0.2" /> <conlite minversion="2.9.0" />
</requirements> </requirements>
<conlite /> <conlite />
</plugin> </plugin>

Datei anzeigen

@ -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'
); );
?>

Datei anzeigen

@ -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());
} }
?>