X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=birthday_confirm.php;h=11b24eee014c0b6fb583c62edef108bc1d9729eb;hp=2f1aedc0386e45e69884d362a08c6c3bd4a9e423;hb=6ab47a0e88ac316936f4c9245886b3c8c07f1e67;hpb=039203d5428c9c6a3bed61fb3a9a16958c6fd44c diff --git a/birthday_confirm.php b/birthday_confirm.php index 2f1aedc038..11b24eee01 100644 --- a/birthday_confirm.php +++ b/birthday_confirm.php @@ -8,7 +8,7 @@ * -------------------------------------------------------------------- * * Short description : Birthday bonus confirmation link * * -------------------------------------------------------------------- * - * Kurzbeschreibung : Geburtstagsgutschrift bestätigen * + * Kurzbeschreibung : Geburtstagsgutschrift bestaetigen * * -------------------------------------------------------------------- * * $Revision:: $ * * $Date:: $ * @@ -18,6 +18,7 @@ * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * + * Copyright (c) 2009, 2010 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -56,10 +57,10 @@ setContentType('text/html'); redirectOnUninstalledExtension('birthday'); // Script is installed so let's check for his confirmation link... -$userid = bigintval(getRequestElement('userid')); +$userid = bigintval(getRequestParameter('userid')); // Only allow numbers here... -$chk = bigintval(getRequestElement('check'), false); +$chk = bigintval(getRequestParameter('check'), false); // Check if link is not clicked so far $result = SQL_QUERY_ESC("SELECT b.points, d.gender, d.surname, d.family, d.status, d.ref_payout @@ -73,7 +74,7 @@ WHERE b.userid=%s AND b.chk_value='%s' LIMIT 1", array($userid, $chk), __FILE__, __LINE__); -//* DEBUG: */ outputHtml("userid=".$userid.",chk=".$chk." (".strlen($chk).'/'.strlen(getRequestElement('check')).'/'.SQL_NUMROWS($result).")
"); +//* DEBUG: */ outputHtml("userid=".$userid.",chk=".$chk." (".strlen($chk).'/'.strlen(getRequestParameter('check')).'/'.SQL_NUMROWS($result).")
"); // Prepare content $content = array();