1
0
Fork 0

Commits vergleichen

..

Keine gemeinsamen Commits. „2f80a087f96320adb36b820d9aeb1ff4b7390ad7“ und „14fa6ac3024ebee61466d9c7cb38156ed968f046“ haben vollständig unterschiedliche Historien.

4 geänderte Dateien mit 8 neuen und 8 gelöschten Zeilen

1
.gitignore gevendort
Datei anzeigen

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

Datei anzeigen

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <?xml version="1.0" encoding="UTF-8"?>
<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.1.0</version> <version>1.0.2</version>
<license>GNU Lesser General Public License</license> <license>GNU Lesser General Public License</license>
</general> </general>
<requirements php="8.2"> <requirements php="5.4">
<conlite minversion="2.9.0" /> <conlite minversion="2.0.2" />
</requirements> </requirements>
<conlite /> <conlite />
</plugin> </plugin>

Datei anzeigen

@ -21,4 +21,5 @@ 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,5 +1,4 @@
<?php <?php
global $load_client;
/** /**
* This file is the config file for this plugin * This file is the config file for this plugin
* *
@ -34,4 +33,5 @@ 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());
} }
?>