X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fextensions%2Fext-other.php;h=01ad655b2cd8c6174f4256ed6911e5190db47b7f;hb=8383fc52cd2340ea1756f9e1808fa3589e27c341;hp=ed46bc7d056b99a8265ce450aaf9dcabf4cdf7da;hpb=1b4494c45790f1ba6808bb6a037d777147bd8f23;p=mailer.git diff --git a/inc/extensions/ext-other.php b/inc/extensions/ext-other.php index ed46bc7d05..01ad655b2c 100644 --- a/inc/extensions/ext-other.php +++ b/inc/extensions/ext-other.php @@ -39,13 +39,13 @@ if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF']))) } // Version number -$EXT_VERSION = "0.1.8"; +$EXT_VERSION = "0.1.9"; // Auto-set extension version if (empty($EXT_VER)) $EXT_VER = $EXT_VERSION; // Version history array (add more with , "0.1" and so on) -$EXT_VER_HISTORY = array("0.0", "0.0.1", "0.0.2", "0.0.3", "0.0.4", "0.0.5", "0.0.6", "0.0.7", "0.0.8", "0.0.9", "0.1.0", "0.1.1", "0.1.2", "0.1.3", "0.1.4", "0.1.5", "0.1.6", "0.1.7", "0.1.8"); +$EXT_VER_HISTORY = array("0.0", "0.0.1", "0.0.2", "0.0.3", "0.0.4", "0.0.5", "0.0.6", "0.0.7", "0.0.8", "0.0.9", "0.1.0", "0.1.1", "0.1.2", "0.1.3", "0.1.4", "0.1.5", "0.1.6", "0.1.7", "0.1.8", "0.1.9"); switch ($EXT_LOAD_MODE) { @@ -174,15 +174,23 @@ case "update": // Update an extension // Update notes (these will be set as task text!) $UPDATE_NOTES = "Die sonstigen Einstellungen lassen sich nun nur noch ändern, wenn die Erweiterung other auch installiert ist. Anderfalls gibt es einen SQL-Fehler beim Speichern und GROSS_GESCHRIEBENE Worte im Formular."; break; + + case "0.1.9": // SQL queries for v0.1.9 + $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD mailid_error_redirect ENUM('index', 'reject') NOT NULL DEFAULT 'index'"; + + // Update notes (these will be set as task text!) + $UPDATE_NOTES = "Bei fehlerhafter Mail während der Bestätigung kann wahlweise zur Hauptseite weitergeleitet oder auf die eingestellte Ablehnungsseite umgeleitet werden."; + break; } break; default: // Do stuff when extension is loaded - $DUMMY = LOAD_CONFIG("0"); - $CONFIG['max_comma'] = $DUMMY['max_comma']; // Maximum numbers behind commata - $CONFIG['reject_url'] = $DUMMY['reject_url']; // Default rejection URL - define('__CURRENCY', $DUMMY['currency']); // This is the currency for fees! They shall normally remain in real money currencies... - unset($DUMMY); + $dummy = LOAD_CONFIG(); + $_CONFIG['max_comma'] = $dummy['max_comma']; // Maximum numbers behind commata + $_CONFIG['reject_url'] = $dummy['reject_url']; // Default rejection URL + $_CONFIG['mailid_error_redirect'] = $dummy['mailid_error_redirect']; // Default rejection URL + define('__CURRENCY', $dummy['currency']); // This is the currency for fees! They shall normally remain in real money currencies... + unset($dummy); break; } // Language file prefix