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