X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_surfbar_actions.php;h=6ef9aef1554f54b45d1933886d719f79828df34b;hb=875fc680630af5fdf69f42e77321d807e182916d;hp=6dbd82e4a24b4f4baab0c521f3666ca962392604;hpb=debaac55fafff501de5077f3672623c0d738a5b2;p=mailer.git diff --git a/inc/modules/admin/what-list_surfbar_actions.php b/inc/modules/admin/what-list_surfbar_actions.php index 6dbd82e4a2..6ef9aef155 100644 --- a/inc/modules/admin/what-list_surfbar_actions.php +++ b/inc/modules/admin/what-list_surfbar_actions.php @@ -10,10 +10,10 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Auflistung von Mitgliederaktionen der Surfbar * * -------------------------------------------------------------------- * - * $Revision:: 856 $ * - * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. March 2009) $ * + * $Revision:: $ * + * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * - * $Author:: stelzi $ * + * $Author:: $ * * Needs to be in all Files and every File needs "svn propset * * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * @@ -38,22 +38,22 @@ // Some security stuff... if ((!defined('__SECURITY')) || (!is_admin())) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); } // 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