]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-list_surfbar_actions.php
A lot rewrites from double-quote to single-quote, some fixes for extension handling...
[mailer.git] / inc / modules / admin / what-list_surfbar_actions.php
index 10cc3ccf8dafb24647b50d1ee3c8558eeb2014b2..6fe3cda2ddab5aea91c3e599a200875bf3fc4d88 100644 (file)
@@ -43,17 +43,17 @@ if ((!defined('__SECURITY')) || (!is_admin())) {
 }
 
 // Add description as navigation point
-ADD_DESCR("admin", __FILE__);
+ADD_DESCR('admin', __FILE__);
 
 // Load all actions
-$result = SQL_QUERY("SELECT `id`, `status`, `action`, `new_status`
+$result = SQL_QUERY("SELECT `id`,`status`,`action`,`new_status`
 FROM `{!_MYSQL_PREFIX!}_surfbar_actions`
 ORDER BY `status` ASC, `action` ASC", __FILE__, __LINE__);
 
 // Entries found?
 if (SQL_NUMROWS($result) > 0) {
        // List all entries
-       $OUT = ""; $SW = 2;
+       $OUT = ''; $SW = 2;
        while ($content = SQL_FETCHARRAY($result)) {
                // "Translate" some data
                $content['status']     = constant(sprintf("SURFBAR_URL_STATUS_%s", $content['status']));
@@ -82,7 +82,7 @@ if (SQL_NUMROWS($result) > 0) {
        LOAD_TEMPLATE("admin_list_surfbar_actions", false, $OUT);
 } else {
        // No entries found, very bad!
-       LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_SURFBAR_NO_ACTIONS'));
+       LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_SURFBAR_NO_ACTIONS'));
 }
 
 // Free result