]> git.mxchange.org Git - mailer.git/blobdiff - inc/filters.php
- The update of jquery caused an about with missing variable $this which is
[mailer.git] / inc / filters.php
index 9c57230fb416e41d75b541cda7f0f161022bc65a..36ded8372f0e8a92f9512207895bf7f9189c4314 100644 (file)
@@ -659,13 +659,16 @@ function FILTER_FLUSH_OUTPUT () {
        outputHtml('');
 }
 
-// Prepares an SQL statement part for HTML mail and/or holiday depency
+// Prepares an SQL statement part for HTML mail and/or holiday dependency
 function FILTER_HTML_INCLUDE_USERS ($mode) {
        // Exclude no users by default
        $MORE = '';
 
        // HTML mail?
-       if ($mode == 'html') $MORE = " AND `html`='Y'";
+       if ($mode == 'html') {
+               $MORE = " AND `html`='Y'";
+       } // END - if
+
        if (isExtensionInstalledAndNewer('holiday', '0.1.3')) {
                // Add something for the holiday extension
                $MORE .= " AND `holiday_active`='N'";