]> git.mxchange.org Git - mailer.git/commitdiff
More fixes for wrong table name :(
authorRoland Häder <roland@mxchange.org>
Sat, 24 Nov 2012 12:38:53 +0000 (12:38 +0000)
committerRoland Häder <roland@mxchange.org>
Sat, 24 Nov 2012 12:38:53 +0000 (12:38 +0000)
inc/extensions/ext-active.php
inc/extensions/ext-beg.php
inc/extensions/ext-doubler.php

index 340eeb4592e9cc319886605adebe8457d038b4d8..89541f5506a554ef5e6b86e843e036815b4c7c6b 100644 (file)
@@ -117,7 +117,7 @@ switch (getExtensionMode()) {
                                break;
 
                        case '0.0.9': // SQL queries for v0.0.9
-                               // Make update depending on 'online'
+                               // Make update depending on ext-online
                                addExtensionDependency('online');
 
                                // Register filter
index b2bbb5d49cb545b97131fc0411faa9131cb51090..493182c02a8fb427de5edda3b9524922c31fd9cf 100644 (file)
@@ -57,7 +57,7 @@ switch (getExtensionMode()) {
                addConfigAddSql('beg_timeout', 'BIGINT(20) UNSIGNED NOT NULL DEFAULT 600');
                addConfigAddSql('beg_userid_timeout', 'BIGINT(20) UNSIGNED NOT NULL DEFAULT 1800');
                addConfigAddSql('beg_points', 'FLOAT(20,5) UNSIGNED NOT NULL DEFAULT 0.00100');
-               addExtensionAddTableColumnSql('online', 'beg_clicks', 'BIGINT(20) UNSIGNED NOT NULL DEFAULT 0');
+               addExtensionAddTableColumnSql('user_data', 'beg_clicks', 'BIGINT(20) UNSIGNED NOT NULL DEFAULT 0');
 
                // Table for IP locks
                addDropTableSql('beg_ips');
@@ -210,9 +210,9 @@ INDEX (`userid`)",
                                addConfigAddSql('beg_new_mem_notify', "ENUM('Y','N') NOT NULL DEFAULT 'N'");
                                addConfigAddSql('beg_notify_bonus', 'FLOAT(20,5) UNSIGNED NOT NULL DEFAULT 0.00000');
                                addConfigAddSql('beg_notify_wait', 'BIGINT(20) UNSIGNED NOT NULL DEFAULT 30');
-                               addExtensionAddTableColumnSql('online', 'beg_ral_notify', 'BIGINT(20) UNSIGNED NOT NULL DEFAULT 0');
-                               addExtensionAddTableColumnSql('online', 'beg_ral_en_notify', 'BIGINT(20) UNSIGNED NOT NULL DEFAULT 0');
-                               addExtensionAddTableColumnSql('online', 'beg_ral_di_notify', 'BIGINT(20) UNSIGNED NOT NULL DEFAULT 0');
+                               addExtensionAddTableColumnSql('user_data', 'beg_ral_notify', 'BIGINT(20) UNSIGNED NOT NULL DEFAULT 0');
+                               addExtensionAddTableColumnSql('user_data', 'beg_ral_en_notify', 'BIGINT(20) UNSIGNED NOT NULL DEFAULT 0');
+                               addExtensionAddTableColumnSql('user_data', 'beg_ral_di_notify', 'BIGINT(20) UNSIGNED NOT NULL DEFAULT 0');
 
                                // Update notes (these will be set as task text!)
                                setExtensionUpdateNotes("Die Mitglieder k&ouml;nnen nun optional automatisch &uuml;ber eine aktivierte und/oder deaktivierte Bettel-Rallye informiert werden. Beide Benachrichtigungen k&ouml;nnen Sie unter <strong>Einstellungen --&gt; Bettel-Link/-rallye</strong> seperat ein- und ausschalten! Zudem ist eine Sperre gegen eingeloggte Mitglieder eingebaut, die das Klicken auf den eigenen Bettel-Link etwas erschweren soll.");
index 6a6cb9147d96dffadfbb4d40337df503d1b40b3f..3736a67dc10ee019e135f5f44ce106596d3446bf 100644 (file)
@@ -95,7 +95,7 @@ INDEX (`userid`)",
                // Number of entries which are already payed out
                addConfigAddSql('doubler_display_old', 'TINYINT(3) UNSIGNED NOT NULL DEFAULT 10');
                // Points used by every member
-               addExtensionAddTableColumnSql('online', 'doubler_points', 'FLOAT(20,5) UNSIGNED NOT NULL DEFAULT 0.00000');
+               addExtensionAddTableColumnSql('user_data', 'doubler_points', 'FLOAT(20,5) UNSIGNED NOT NULL DEFAULT 0.00000');
                // Counter for usage of the doubler
                addConfigAddSql('doubler_counter', 'BIGINT(20) UNSIGNED NOT NULL DEFAULT 0');