]> git.mxchange.org Git - mailer.git/blobdiff - inc/filter/register_filter.php
Wrapper getTurboRates() introduced
[mailer.git] / inc / filter / register_filter.php
index e73d8a45a9a182a66ad1d74c5efebd781c468a72..7bd56bc650fd1b7d7b9442e311e38e8a6a90cc49 100644 (file)
@@ -43,7 +43,8 @@ if (!defined('__SECURITY')) {
 // Run a filter for must-fillout fields
 function FILTER_REGISTER_MUST_FILLOUT ($content) {
        // Get all fields for output
-       $result = SQL_QUERY('SELECT `field_name`, `field_required` FROM `{?_MYSQL_PREFIX?}_must_register` ORDER BY `id` ASC',
+       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Called!');
+       $result = SQL_QUERY('SELECT `field_name`,`field_required` FROM `{?_MYSQL_PREFIX?}_must_register` ORDER BY `id` ASC',
                __FUNCTION__, __LINE__);
 
        // Walk through all entries
@@ -62,6 +63,7 @@ function FILTER_REGISTER_MUST_FILLOUT ($content) {
        SQL_FREERESULT($result);
 
        // Return it
+       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Done!');
        return $content;
 }