]> 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 36ff338a0de44ec04250ccbc53de1448d4aedebb..0f2f9275c8d45ddb9cbf94f4cc31b76b9f2f2e2f 100644 (file)
@@ -48,7 +48,7 @@ if (!defined('__SECURITY')) {
 }
 
 // Load some data
-$result = SQL_QUERY_ESC('SELECT
+$result = sqlQueryEscaped('SELECT
        `id`,
        `gender`,
        `surname`,
@@ -64,10 +64,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);