]> git.mxchange.org Git - mailer.git/blobdiff - inc/extensions/ext-doubler.php
Language id renamed, some network query amounts added
[mailer.git] / inc / extensions / ext-doubler.php
index 76fb81982dc0628cd6f7cb16aae9844fc000a84a..46d31abd98e9578e883b8d84497f119905ae5065 100644 (file)
@@ -41,10 +41,10 @@ if (!defined('__SECURITY')) {
 } // END - if
 
 // Version number
-setThisExtensionVersion('0.1.8');
+setThisExtensionVersion('0.1.9');
 
 // Version history array (add more with , '0.0.1' and so on)
-setExtensionVersionHistory(array('0.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'));
+setExtensionVersionHistory(array('0.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 (getExtensionMode()) {
        case 'register': // Do stuff when installation is running
@@ -248,6 +248,14 @@ INDEX (`userid`)",
                                // Update notes
                                setExtensionUpdateNotes("Doppler-Gutschriften werden nun &uuml;ber die Tabelle <strong>{OPEN_CONFIG}_MYSQL_PREFIX{CLOSE_CONFIG}_points_data</strong> verwaltet.");
                                break;
+
+                       case '0.1.9': // SQL queries for v0.1.9
+                               // Total payed out points from your doublers
+                               addConfigAddSql('doubler_used', 'FLOAT(20,5) UNSIGNED NOT NULL DEFAULT 0.00000');
+
+                               // Update notes
+                               setExtensionUpdateNotes("Fehlender Konfigurationseintrag <strong>doubler_used</strong> hinzgef&uuml;gt.");
+                               break;
                } // END - switch
                break;