]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_imprint.php
Some fixes:
[mailer.git] / inc / modules / admin / what-config_imprint.php
index 6adb3616bcb832004b7cd32ca31363721a26bdde..752442fbf5c57a9a8ee84391cd0f38263877b975 100644 (file)
@@ -48,7 +48,7 @@ if (isFormSent()) {
        // Handle form ...
 } else {
        // Query for all imprint data rows
-       $result = SQL_QUERY('SELECT `imprint_key`,`imprint_value` FROM `{?_MYSQL_PREFIX?}_imprint_data` ORDER BY `imprint_id` ASC', __FILE__, __LINE__);
+       $result = SQL_QUERY('SELECT `imprint_key`, `imprint_value` FROM `{?_MYSQL_PREFIX?}_imprint_data` ORDER BY `imprint_id` ASC', __FILE__, __LINE__);
 
        // Do we have entries?
        if (!SQL_HASZERONUMS($result)) {
@@ -62,7 +62,7 @@ if (isFormSent()) {
                // Transfer all rows to $content
                $content = $OUT;
        } else {
-               // None found!
+               // None found
                $content = loadTemplate('admin_list_imprint_row_none', true);
        }