X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fsponsor%2Fwelcome.php;h=01a2629302aacce2316ff037e5e29ed88b341a88;hb=99966a712b3b3d8b521524762e153353d1d20bd4;hp=3748ee35cf26266abc5135b2e0a07bec6f3e6f2b;hpb=1fd39b2564946ce7f19776abab8d65a31928fba1;p=mailer.git diff --git a/inc/modules/sponsor/welcome.php b/inc/modules/sponsor/welcome.php index 3748ee35cf..01a2629302 100644 --- a/inc/modules/sponsor/welcome.php +++ b/inc/modules/sponsor/welcome.php @@ -10,16 +10,9 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Willkommensseite des Sponsorenbereiches * * -------------------------------------------------------------------- * - * $Revision:: $ * - * $Date:: $ * - * $Tag:: 0.2.1-FINAL $ * - * $Author:: $ * - * Needs to be in all Files and every File needs "svn propset * - * 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 * + * Copyright (c) 2009 - 2013 by Mailer Developer Team * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -39,9 +32,9 @@ // Some security stuff... if (!defined('__SECURITY')) { - die(); + exit(); } elseif (!isExtensionActive('sponsor')) { - loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('sponsor')); + displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=sponsor%}'); return; } elseif (!isSponsor()) { // No sponsor! @@ -50,27 +43,29 @@ if (!defined('__SECURITY')) { } // Load some data -$result = SQL_QUERY_ESC("SELECT - `gender`, `surname`, `family`, (`points_amount` - `points_used`) AS points +$result = sqlQueryEscaped('SELECT + `id`, + `gender`, + `surname`, + `family`, + (`points_amount` - `points_used`) AS `points` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE - `id`=%s AND - `password`='%s' -LIMIT 1", + `id`=%s +LIMIT 1', array( - bigintval(getSession('sponsorid')), - getSession('sponsorpass') + bigintval(getSession('sponsor_id')) ), __FILE__, __LINE__); // Fetch data -$content = SQL_FETCHARRAY($result); +$content = sqlFetchArray($result); // Free memory -SQL_FREERESULT($result); +sqlFreeResult($result); // Load main template -$OUT = loadTemplate('sponsor_welcome', true, $content); +$GLOBALS['sponsor_output'] = loadTemplate('sponsor_welcome', TRUE, $content); // [EOF] ?>