]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/sponsor/welcome.php
Opps, not all elements for sprintf() has been set.
[mailer.git] / inc / modules / sponsor / welcome.php
index 12bf7861218db2ad2d2233e53c298078afba79cc..01a2629302aacce2316ff037e5e29ed88b341a88 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Willkommensseite des Sponsorenbereiches          *
  * -------------------------------------------------------------------- *
- * $Revision::                                                        $ *
- * $Date::                                                            $ *
- * $Tag:: 0.2.1-FINAL                                                 $ *
- * $Author::                                                          $ *
- * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * 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 *
@@ -48,7 +43,7 @@ if (!defined('__SECURITY')) {
 }
 
 // Load some data
-$result = SQL_QUERY_ESC('SELECT
+$result = sqlQueryEscaped('SELECT
        `id`,
        `gender`,
        `surname`,
@@ -64,10 +59,10 @@ LIMIT 1',
        ), __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);