Immer aktiv für diese Erweiterung deaktiviert.";
break;
case "0.0.3": // SQL queries for v0.0.3
// Update notes (these will be set as task text!)
$UPDATE_NOTES = "Wörter Mailtausch, Mailtausches und Mailtauscher sind austauschbar.";
break;
case "0.0.4": // SQL queries for v0.0.4
// Update notes (these will be set as task text!)
$UPDATE_NOTES = "HTML-Code ausgelagert in Templates und SQL-Anweisungen abgesichert.";
break;
case "0.0.5": // SQL queries for v0.0.5
// Update notes (these will be set as task text!)
$UPDATE_NOTES = "Abspeichern von Einstellungen repariert.";
break;
case "0.0.6": // SQL queries for v0.0.6
// Update notes (these will be set as task text!)
$UPDATE_NOTES = "Bitte Script inc/monthly_newsletter.php löschen!";
break;
case "0.0.7": // SQL queries for v0.0.7
// Update notes (these will be set as task text!)
$UPDATE_NOTES = "Script inc/monthly/monthly_newsletter.php wird nicht mehr ausgeführt, wenn die Erweiterung nicht aktiviert ist.";
break;
case "0.0.8": // SQL queries for v0.0.8
// Update notes (these will be set as task text!)
$UPDATE_NOTES = "Sicherheitsupdate für die Include-Befehle.";
break;
case "0.0.9": // SQL queries for v0.0.9
// Update notes (these will be set as task text!)
$UPDATE_NOTES = "Nur bei installierter Erweiterung html_mail können Sie auch HTML-Mails versenden.";
break;
case "0.1.0": // SQL queries for v0.2.1
// Update notes (these will be set as task text!)
$UPDATE_NOTES = "Nur bei installierter Erweiterung html_mail können Sie auch HTML-Mails versenden.";
break;
case "0.1.1": // SQL queries for v0.1.1
// Update notes (these will be set as task text!)
$UPDATE_NOTES = "Währung auf die Erweiterung ext-other.zip verlagert. Bitte auch diese aktualisieren.";
break;
case "0.1.2": // SQL queries for v0.1.2
// Update notes (these will be set as task text!)
$UPDATE_NOTES = "Fehlerhinweis bei deaktivierter Erweiterung verbessert.";
break;
}
break;
case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
break;
default: // Do stuff when extension is loaded
// URL ends which are used to indentify the end of an URL or email link
// Don't use these chars in links... ;-)
//
$GLOBALS['url_ends'] = array(
" ",
"\n",
"\r",
")",
);
// Valid email chars (without @, or do you want to have another @ inside your email addy?)
$GLOBALS['valid_email_chars'] = array(
'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s',
't','u','v','w','x','y','z','a','B','C','D','E','F','G','H','I','J','K','L',
'M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z','-','.','_','0','1',
'2','3','4','5','6','7','8','9'
);
if (isBooleanConstantAndTrue('__DAILY_RESET') && (!isBooleanConstantAndTrue('DEBUG_MODE')) && ($GLOBALS['output_mode'] != 1)) {
// Daily reset was run so let's check out for expired newsletter orders
$INC_POOL[] = sprintf("%sinc/monthly/monthly_newsletter.php", constant('PATH'));
}
break;
}
//
?>