]> git.mxchange.org Git - mailer.git/blobdiff - inc/extensions/ext-register.php
Fix for division by zero in mediadata
[mailer.git] / inc / extensions / ext-register.php
index 1ced350f360c526467fc102716fdbacee6a7c559..06604e03ae7ff09a37bf778336005652ec0278ec 100644 (file)
@@ -209,8 +209,8 @@ PRIMARY KEY(id)
 
        case "0.3.2": // SQL queries for v0.3.2
                // Update notes (these will be set as task text!)
-               $UPDATE_NOTES = "Einbindung der Erweiterung <STRONG>country</STRONG>, die Sie sich noch optional von <A href=\"".URL."/modules.php?module=admin&amp;what=extensions&amp;do=search\">meiner Seite herunterladen</A> m&uuml;ssen.<BR>
-<BR>
+               $UPDATE_NOTES = "Einbindung der Erweiterung <STRONG>country</STRONG>, die Sie sich noch optional von <A href=\"".URL."/modules.php?module=admin&amp;what=extensions&amp;do=search\">meiner Seite herunterladen</A> m&uuml;ssen.<br />
+<br />
 <STRONG>Wichtig: Laden Sie noch das Template <STRONG>guest_register.tpl</STRONG> mit hoch, welches unter templates/".GET_LANGUAGE()."/html/guest/ zu finden ist!</STRONG>";
 
                // Depends on 'country'
@@ -292,7 +292,7 @@ PRIMARY KEY(id)
 
        case "0.4.7": // SQL queries for v0.4.7
                // Update notes (these will be set as task text!)
-               $UPDATE_NOTES = "<STRONG>setcookie()</STRONG> mit @-Zeichen gegen ungewollte Ausgaben abgesichert.";
+               $UPDATE_NOTES = "<STRONG>set_session()</STRONG> mit @-Zeichen gegen ungewollte Ausgaben abgesichert.";
                break;
 
        case "0.4.8": // SQL queries for v0.4.8
@@ -323,10 +323,10 @@ PRIMARY KEY(id)
        break;
 
 default: // Do stuff when extension is loaded
-       $DUMMY = LOAD_CONFIG("0");
+       $dummy = LOAD_CONFIG();
        // Copy data to config array
-       $CONFIG['register_default'] = $DUMMY['register_default']; // Is Yes/No the default selection in category selection?
-       unset($DUMMY);
+       $_CONFIG['register_default'] = $dummy['register_default']; // Is Yes/No the default selection in category selection?
+       unset($dummy);
        break;
 }