X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_holiday.php;h=c883ed6c0c411cad6ef479f4024472e582947ab1;hp=d52a9e57c333eb1887ac0c42ef9128d562ceb825;hb=f97a999e0737c0007ae9c3c26dfef49f75a175ac;hpb=508228c85fba8448d00865b1639cb8cd7a69e457 diff --git a/inc/modules/admin/what-list_holiday.php b/inc/modules/admin/what-list_holiday.php index d52a9e57c3..c883ed6c0c 100644 --- a/inc/modules/admin/what-list_holiday.php +++ b/inc/modules/admin/what-list_holiday.php @@ -10,7 +10,7 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Alle Urlaubsschaltungen auflisten * * -------------------------------------------------------------------- * - * $Revision:: 856 $ * + * $Revision:: $ * * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * @@ -38,12 +38,12 @@ // 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__); // Start listing holiday requests $result = SQL_QUERY("SELECT h.id, h.userid, h.holiday_start, h.holiday_end, h.comments, d.status, d.last_online @@ -54,7 +54,7 @@ ORDER BY h.userid", __FILE__, __LINE__); if (SQL_NUMROWS($result) > 0) { // List all holiday requests - $OUT = ""; $SW = 2; + $OUT = ''; $SW = 2; while ($content = SQL_FETCHARRAY($result)) { // Add three dashes to comment when it is empty if (empty($content['comments'])) $content['comments'] = "---"; @@ -86,7 +86,7 @@ if (SQL_NUMROWS($result) > 0) { LOAD_TEMPLATE("admin_list_holiday"); } else { // No holiday requests found - LOAD_TEMPLATE("admin_settings_saved", false, getMessage('HOLIDAY_ADMIN_NOTHING_FOUND')); + LOAD_TEMPLATE('admin_settings_saved', false, getMessage('HOLIDAY_ADMIN_NOTHING_FOUND')); } //