]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-email_archiv.php
A lot rewrites from double-quote to single-quote, some fixes for extension handling...
[mailer.git] / inc / modules / admin / what-email_archiv.php
index 324f92dfafafac1f4f5b62b4100c49f518609d57..3e9cf6770b5b0d22148e1262eb018a1fa36d97ac 100644 (file)
@@ -46,7 +46,7 @@ if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
 }
 
 // Add description as navigation point
-ADD_DESCR("admin", __FILE__);
+ADD_DESCR('admin', __FILE__);
 
 //             0     1        2      3        4          5           6          7      8         9        10
 $sql = "SELECT id, sender, subject, text, receivers, payment_id, data_type, timestamp, url, target_send, cat_id
@@ -83,11 +83,11 @@ if (SQL_NUMROWS($result) > 0)
        }
         else
        {
-               define('__TOP_EMAIL_NAV'   , "");
-               define('__BOTTOM_EMAIL_NAV', "");
+               define('__TOP_EMAIL_NAV'   , '');
+               define('__BOTTOM_EMAIL_NAV', '');
        }
 
-       $OUT = ""; $SW = 2;
+       $OUT = ''; $SW = 2;
        while ($pool = SQL_FETCHROW($result))
        {
                // Check sent mails and clicks
@@ -113,7 +113,7 @@ if (SQL_NUMROWS($result) > 0)
                        'pay'         => GET_PAYMENT($pool[5]),
                        'cat'         => GET_CATEGORY($pool[10]),
                        'sent'        => $sent,
-                       'ruids'       => str_replace(";", ", ", $pool[4]),
+                       'ruids'       => str_replace(';', ", ", $pool[4]),
                        'unconfirmed' => $unconfirmed,
                        'type'        => TRANSLATE_POOL_TYPE($pool[6]),
                        'tsend'       => $pool[9],
@@ -136,7 +136,7 @@ if (SQL_NUMROWS($result) > 0)
        LOAD_TEMPLATE("admin_email_archiv");
 } else {
        // No mail orders fond
-       LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_NO_MAILS_IN_POOL'));
+       LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_NO_MAILS_IN_POOL'));
 }
 //
 ?>