]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/sponsor/welcome.php
Renamed all SQL-related functions to camel-case notation
[mailer.git] / inc / modules / sponsor / welcome.php
index a740df393395ed9e9b1a7192442c7ec80e1820bc..0f2f9275c8d45ddb9cbf94f4cc31b76b9f2f2e2f 100644 (file)
@@ -16,8 +16,8 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 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 *
@@ -37,9 +37,9 @@
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       die();
+       exit();
 } elseif (!isExtensionActive('sponsor')) {
-       displayMessage(generateExtensionInactiveNotInstalledMessage('sponsor'));
+       displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=sponsor%}');
        return;
 } elseif (!isSponsor()) {
        // No sponsor!
@@ -48,25 +48,29 @@ if (!defined('__SECURITY')) {
 }
 
 // Load some data
-$result = SQL_QUERY_ESC("SELECT
-       `id`, `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
-LIMIT 1",
+LIMIT 1',
        array(
                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
-$GLOBALS['sponsor_output'] = loadTemplate('sponsor_welcome', true, $content);
+$GLOBALS['sponsor_output'] = loadTemplate('sponsor_welcome', TRUE, $content);
 
 // [EOF]
 ?>