From d4cff9c73632a8d93428a80dcf54b3a8daa80a24 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sun, 29 Aug 2010 16:27:37 +0000 Subject: [PATCH] Fix for broken confirmation --- inc/language/mailid_de.php | 3 ++- mailid.php | 6 +++--- templates/de/html/mailid/mailid_timer.tpl | 4 +++- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/inc/language/mailid_de.php b/inc/language/mailid_de.php index 5abfb72f61..c0f5037fc0 100644 --- a/inc/language/mailid_de.php +++ b/inc/language/mailid_de.php @@ -50,7 +50,8 @@ addMessages(array( 'MEMBER_THANX_POINTS_LOCKED' => "Vielen Dank für die Bestätigung der Mail. Die %s {?POINTS?} werden Ihnen bald gutgeschrieben.", 'MEMBER_POINTS_NOT_ADDED' => "Falscher Bestätigungscode eingegeben! Die %s {?POINTS?} wurden dem Versender wieder gutgeschrieben.", 'MEMBER_ENTER_CODE' => "Code eingeben", - 'MEMBER_TIME_COUNTER' => "Gutschrift der {?POINTS?} erfolgt in %s ...", + 'MEMBER_TIME_COUNTER1' => "Gutschrift der {?POINTS?} erfolgt in ", + 'MEMBER_TIME_COUNTER2' => " ...", 'MEMBER_SUBMIT_CODE' => "Abschicken", 'MEMBER_MAILID_TOTAL_POINTS' => "Ihr Kontostand beträgt jetzt %s {?POINTS?}.", 'MEMBER_MAILID_CLICK_BUTTON' => "Einmal den Button anklicken", diff --git a/mailid.php b/mailid.php index bc7848c2d8..6a028dee56 100644 --- a/mailid.php +++ b/mailid.php @@ -63,9 +63,9 @@ $bonusId = '0'; $mailId = '0'; // Secure all data -if (isGetRequestParameterSet('userid')) $userId = bigintval(getRequestParameter('userid')); -if (isGetRequestParameterSet('mailid')) $mailId = bigintval(getRequestParameter('mailid')); -if (isGetRequestParameterSet('bonusid')) $bonusId = bigintval(getRequestParameter('bonusid')); +if (isGetRequestParameterSet('userid')) $userId = bigintval(getRequestParameter('userid')); +if (isGetRequestParameterSet('mailid')) $mailId = bigintval(getRequestParameter('mailid')); +if (isGetRequestParameterSet('bonusid')) $bonusId = bigintval(getRequestParameter('bonusid')); // 01 1 12 2 2 21 1 2210 if ((isValidUserId($userId)) && (($mailId > 0) || ($bonusId > 0)) && (!ifFatalErrorsDetected())) { diff --git a/templates/de/html/mailid/mailid_timer.tpl b/templates/de/html/mailid/mailid_timer.tpl index 26ea4de4f1..b5c7d63629 100644 --- a/templates/de/html/mailid/mailid_timer.tpl +++ b/templates/de/html/mailid/mailid_timer.tpl @@ -27,7 +27,9 @@ function startCounter() {
- {%message,MEMBER_TIME_COUNTER,%} + {--MEMBER_TIME_COUNTER1--} + + {--MEMBER_TIME_COUNTER2--}
-- 2.39.5