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>
<general active="1">
<plugin_name>Smarty Wrapper</plugin_name>
@ -9,11 +9,11 @@
<copyright>(c) 2017 Ortwin Pinke, PHP-Backoffice.de</copyright>
<mail>info@php-backoffice.de</mail>
<website>http://php-backoffice.de</website>
<version>1.0.2</version>
<version>1.1.0</version>
<license>GNU Lesser General Public License</license>
</general>
<requirements php="5.4">
<conlite minversion="2.0.2" />
<requirements php="8.2">
<conlite minversion="2.9.0" />
</requirements>
<conlite />
</plugin>

Datei anzeigen

@ -21,5 +21,4 @@ return array(
'cSmartyBackend' => $sAutoloadClassPath.'class.smarty.backend.php',
'cSmartyFrontend' => $sAutoloadClassPath.'class.smarty.frontend.php',
'cSmartyWrapper' => $sAutoloadClassPath.'class.smarty.wrapper.php'
);
?>
);

Datei anzeigen

@ -1,4 +1,5 @@
<?php
global $load_client;
/**
* This file is the config file for this plugin
*
@ -33,5 +34,4 @@ try {
new cSmartyFrontend(cRegistry::getConfig(), cRegistry::getClientConfig(cRegistry::getClientId()), true);
} catch (Exception $e) {
cWarning($e->getFile(), $e->getLine(), $e->getMessage());
}
?>
}