Functions for handling INC_POOL moved to inc-functions.php, plus some extra functions...
authorRoland Häder <roland@mxchange.org>
Tue, 10 Mar 2009 17:14:19 +0000 (17:14 +0000)
committerRoland Häder <roland@mxchange.org>
Tue, 10 Mar 2009 17:14:19 +0000 (17:14 +0000)
inc/functions.php
inc/inc-functions.php [new file with mode: 0644]
inc/language/de.php
inc/modules/admin.php
inc/mysql-connect.php
templates/de/html/admin/admin_overview_header.tpl
templates/de/html/admin/admin_reg_form.tpl
templates/de/html/admin/admin_settings_saved.tpl
theme/business/css/general.css
theme/default/css/general.css
theme/desert/css/general.css

index a3fb34dbd052fe4cebac2cd731de20cf6bdc6af2..a794e2d9e039b40578dbfcf9303da67a7b3490d2 100644 (file)
@@ -41,20 +41,6 @@ if (!defined('__SECURITY')) {
        require($INC);
 }
 
-// Check if our config file is writeable or not
-function IS_INC_WRITEABLE ($inc) {
-       // Generate FQFN
-       $FQFN = sprintf("%sinc/%s.php", constant('PATH'), $inc);
-
-       // Abort by simple test
-       if ((FILE_READABLE($FQFN)) && (!is_writeable($FQFN))) {
-               return false;
-       } // END - if
-
-       // Test write-access on directory
-       return is_writeable(dirname($FQFN));
-}
-
 // Output HTML code directly or "render" it. You addionally switch the new-line character off
 function OUTPUT_HTML ($HTML, $newLine = true) {
        // Some global variables
@@ -2698,7 +2684,7 @@ function LOAD_INC ($INC) {
        $FQFN = constant('PATH') . $INC;
 
        // Is the include file there?
-       if (!FILE_READABLE($FQFN)) {
+       if (!INCLUDE_READABLE($INC)) {
                // Not there so log it
                debug_report_bug(sprintf("Include file %s not found.", $INC));
                return false;
@@ -3102,58 +3088,6 @@ function DEBUG_LOG ($funcFile, $line, $message, $force=true) {
        } // END - if
 }
 
-// Reads a directory with PHP files in and gets only files back
-function GET_DIR_AS_ARRAY ($baseDir, $prefix, $includeDirs = false, $addBaseDir = true) {
-       //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "baseDir={$baseDir},prefix={$prefix} - Entered!");
-       // Init includes
-       $INCs = array();
-
-       // Open directory
-       $dirPointer = opendir(constant('PATH') . $baseDir) or mxchange_die("Cannot read ".basename($baseDir)." path!");
-
-       // Read all entries
-       while ($baseFile = readdir($dirPointer)) {
-               // Construct include filename and FQFN
-               $INC = $baseDir . "/" . $baseFile;
-               $FQFN = constant('PATH') . $INC;
-
-               // Is this a valid reset file?
-               //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "baseDir={$baseDir},prefix={$prefix},baseFile={$baseFile}");
-               if (((FILE_READABLE($FQFN)) && (substr($baseFile, 0, strlen($prefix)) == $prefix) && (substr($baseFile, -4, 4) == ".php")) || (($includeDirs) && (isDirectory($FQFN)))) {
-                       // Remove both for extension name
-                       $extName = substr($baseFile, strlen($prefix), -4);
-
-                       // Try to find it
-                       $extId = GET_EXT_ID($extName);
-
-                       // Is the extension valid and active?
-                       if (($extId > 0) && (EXT_IS_ACTIVE($extName))) {
-                               // Then add this file
-                               //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, " Extension entry ".$baseFile." added.");
-                               $INCs[] = $INC;
-                       } elseif ($extId == 0) {
-                               // Add non-extension files as well
-                               //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, " Regular entry ".$baseFile." added.");
-                               if ($addBaseDir) {
-                                       $INCs[] = $INC;
-                               } else {
-                                       $INCs[] = $baseFile;
-                               }
-                       }
-               } // END - if
-       } // END - while
-
-       // Close directory
-       closedir($dirPointer);
-
-       // Sort array
-       asort($INCs);
-
-       // Return array with include files
-       //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, " - Left!");
-       return $INCs;
-}
-
 // Load more reset scripts
 function runResetIncludes () {
        // Is the reset set or old sql_patches?
@@ -3621,51 +3555,6 @@ function isDirectory ($FQFN) {
        return $isDirectory;
 }
 
-// Init INC_POOL
-function INIT_INC_POOL () {
-       $GLOBALS['inc_pool'] = array();
-}
-
-// Setter for INC_POOL
-function SET_INC_POOL ($includePool) {
-       $GLOBALS['inc_pool'] = (array) $includePool;
-}
-
-// Getter for INC_POOL
-function GET_INC_POOL () {
-       return $GLOBALS['inc_pool'];
-}
-
-// Count INC_POOL
-function COUNT_INC_POOL () {
-       return count($GLOBALS['inc_pool']);
-}
-
-// Merge INC_POOL into given
-function MERGE_INC_POOL ($includePool) {
-       SET_INC_POOL(merge_array(GET_INC_POOL(), $includePool));
-}
-
-// Add single include file to INC_POOL
-function ADD_INC_TO_POOL ($INC) {
-       $GLOBALS['inc_pool'][] = (string) $INC;
-}
-
-// Remove an include file from INC_POOL
-function REMOVE_INC_FROM_POOL ($INC) {
-       // First look it up
-       $key = array_search($INC, GET_INC_POOL());
-
-       // Is it valid?
-       if ($key !== false) {
-               // Then remove it
-               unset($GLOBALS['inc_pool'][$key]);
-
-               // And sort the list
-               asort($GLOBALS['inc_pool']);
-       } // END - if
-}
-
 // Handle message codes from URL
 function handleCodeMessage () {
        if (REQUEST_ISSET_GET(('msg'))) {
diff --git a/inc/inc-functions.php b/inc/inc-functions.php
new file mode 100644 (file)
index 0000000..22fd177
--- /dev/null
@@ -0,0 +1,156 @@
+<?php
+/************************************************************************
+ * MXChange v0.2.1                                    Start: 03/10/2009 *
+ * ===============                              Last change: 03/10/2009 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : inc-functions.php                                *
+ * -------------------------------------------------------------------- *
+ * Short description : Special functions for handling include files     *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : Spezielle Funktionen fuer Include-Dateien        *
+ * -------------------------------------------------------------------- *
+ * $Revision:: 905                                                    $ *
+ * $Date:: 2009-03-10 17:24:54 +0100 (Tue, 10 Mar 2009)               $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author:: quix0r                                                   $ *
+ * Needs to be in all Files and every File needs "svn propset           *
+ * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or    *
+ * (at your option) any later version.                                  *
+ *                                                                      *
+ * This program is distributed in the hope that it will be useful,      *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
+ * GNU General Public License for more details.                         *
+ *                                                                      *
+ * You should have received a copy of the GNU General Public License    *
+ * along with this program; if not, write to the Free Software          *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
+ * MA  02110-1301  USA                                                  *
+ ************************************************************************/
+// Some security stuff...
+if (!defined('__SECURITY')) {
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4)."/security.php";
+       require($INC);
+}
+
+// Check if our config file is writeable or not
+function IS_INC_WRITEABLE ($inc) {
+       // Generate FQFN
+       $FQFN = sprintf("%sinc/%s.php", constant('PATH'), $inc);
+
+       // Abort by simple test
+       if ((FILE_READABLE($FQFN)) && (!is_writeable($FQFN))) {
+               return false;
+       } // END - if
+
+       // Test write-access on directory
+       return is_writeable(dirname($FQFN));
+}
+
+// Reads a directory with PHP files in and gets only files back
+function GET_DIR_AS_ARRAY ($baseDir, $prefix, $includeDirs = false, $addBaseDir = true) {
+       //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "baseDir={$baseDir},prefix={$prefix} - Entered!");
+       // Init includes
+       $INCs = array();
+
+       // Open directory
+       $dirPointer = opendir(constant('PATH') . $baseDir) or mxchange_die("Cannot read ".basename($baseDir)." path!");
+
+       // Read all entries
+       while ($baseFile = readdir($dirPointer)) {
+               // Construct include filename and FQFN
+               $INC = $baseDir . "/" . $baseFile;
+               $FQFN = constant('PATH') . $INC;
+
+               // Is this a valid reset file?
+               //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, "baseDir={$baseDir},prefix={$prefix},baseFile={$baseFile}");
+               if (((FILE_READABLE($FQFN)) && (substr($baseFile, 0, strlen($prefix)) == $prefix) && (substr($baseFile, -4, 4) == ".php")) || (($includeDirs) && (isDirectory($FQFN)))) {
+                       // Remove both for extension name
+                       $extName = substr($baseFile, strlen($prefix), -4);
+
+                       // Try to find it
+                       $extId = GET_EXT_ID($extName);
+
+                       // Is the extension valid and active?
+                       if (($extId > 0) && (EXT_IS_ACTIVE($extName))) {
+                               // Then add this file
+                               //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, " Extension entry ".$baseFile." added.");
+                               $INCs[] = $INC;
+                       } elseif ($extId == 0) {
+                               // Add non-extension files as well
+                               //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, " Regular entry ".$baseFile." added.");
+                               if ($addBaseDir) {
+                                       $INCs[] = $INC;
+                               } else {
+                                       $INCs[] = $baseFile;
+                               }
+                       }
+               } // END - if
+       } // END - while
+
+       // Close directory
+       closedir($dirPointer);
+
+       // Sort array
+       asort($INCs);
+
+       // Return array with include files
+       //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, " - Left!");
+       return $INCs;
+}
+
+// Init INC_POOL
+function INIT_INC_POOL () {
+       $GLOBALS['inc_pool'] = array();
+}
+
+// Setter for INC_POOL
+function SET_INC_POOL ($includePool) {
+       $GLOBALS['inc_pool'] = (array) $includePool;
+}
+
+// Getter for INC_POOL
+function GET_INC_POOL () {
+       return $GLOBALS['inc_pool'];
+}
+
+// Count INC_POOL
+function COUNT_INC_POOL () {
+       return count($GLOBALS['inc_pool']);
+}
+
+// Merge INC_POOL into given
+function MERGE_INC_POOL ($includePool) {
+       SET_INC_POOL(merge_array(GET_INC_POOL(), $includePool));
+}
+
+// Add single include file to INC_POOL
+function ADD_INC_TO_POOL ($INC) {
+       $GLOBALS['inc_pool'][] = (string) $INC;
+}
+
+// Remove an include file from INC_POOL
+function REMOVE_INC_FROM_POOL ($INC) {
+       // First look it up
+       $key = array_search($INC, GET_INC_POOL());
+
+       // Is it valid?
+       if ($key !== false) {
+               // Then remove it
+               unset($GLOBALS['inc_pool'][$key]);
+
+               // And sort the list
+               asort($GLOBALS['inc_pool']);
+       } // END - if
+}
+
+// [EOF]
+?>
index cbfb985c550498574d4e9b417ab4e8a3368aebf7..4593a9f465c0a535fe3e5bb203deb25eb9d2ce84 100644 (file)
@@ -1033,7 +1033,7 @@ define('ADMIN_LINK_LOCK_USER_TITLE', "Mitglied sperren");
 define('ADMIN_LINK_UNLOCK_USER_TITLE', "Mitglied entsperren");
 define('ADMIN_LINK_ADD_POINTS_TITLE', "{!POINTS!} aufbuchen");
 define('ADMIN_LINK_SUB_POINTS_TITLE', "{!POINTS!} abziehen");
-define('MESSAGE_HEADER', "Hinweis");
+define('MESSAGE_HEADER', "Hinweis:");
 define('ADMIN_ALPHA_SELCTION', "Alphabetische Suche:");
 define('CATEGORY_NOT_SAVED', "Kategorie <u>%d</u> nicht gespeichert.");
 define('USER_ACCOUNT_404', "User-Account <u>%d</u> nicht gefunden.");
index 2d9fc975f8dfa6aac2bed2b9ab384878aedf7db7..37f234633d8af064788daffe78fbde4d9ecea63a 100644 (file)
@@ -135,13 +135,16 @@ if (!isAdminRegistered()) {
                        define('__MSG_PASS',  LOAD_TEMPLATE("admin_login_msg", true, $passwdMessage));
 
                        // Reset variables
-                       $loginMessage = ""; $passwdMessage = "";
-               } else {
+                       $loginMessage = ""; $passwdMessage = "";
+               } else {
                        // Reset values to nothing
                        define('__MSG_LOGIN', "");
                        define('__MSG_PASS' , "");
                }
 
+               // Output message in seperate template
+               LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_NOT_REGISTERED'));
+
                // Load register template
                LOAD_TEMPLATE("admin_reg_form");
        }
index d8d70d7c8abf1dd1827d1867a18e1aa4e967275f..5e97ba5b0cc6b531a49fea9efc49eb4cf4f9330b 100644 (file)
@@ -46,7 +46,7 @@ if (!defined('__SECURITY')) {
 require("inc/functions.php");
 
 // Load more function libraries or includes
-foreach (array('request-functions', 'session-functions', 'config-functions', 'code-functions', 'filters', 'mysql-manager', 'extensions', 'db/lib', 'handler', 'hooks') as $lib) {
+foreach (array('request-functions', 'session-functions', 'config-functions', 'code-functions', 'inc-functions', 'filters', 'mysql-manager', 'extensions', 'db/lib', 'handler', 'hooks') as $lib) {
        // Load special functions
        LOAD_INC_ONCE(sprintf("inc/%s.php", $lib));
 } // END - foreach
index 9bd78aa15e5abcd59780e918cdf8386a9795683e..f20301717497b981e6642daec6fbae77a9af6ae9 100644 (file)
@@ -1,16 +1,16 @@
 <form action="{!URL!}/modules.php?module=admin&amp;action=login" method="post" style="margin-bottom: 0px">
 <table border="0" cellspacing="0" cellpadding="0" width="95%" align="center" class="admin_table">
-       <tr>
-               <td colspan="7" align="center" class="admin_task_header top2 left2 right2">
-                       <div class="admin_welcome">{--ADMIN_TASK_SYSTEM_WELCOME--}</div>
-               </td>
-       </tr>
-       <tr>
-               <td align="center" class="top2 bottom2 right2 left2 admin_header"><strong>{--ID_SELECT--}</strong></td>
-               <td align="center" class="top2 bottom2 right2 admin_header"><strong>{--ADMIN_ASSIGNED_ADMIN--}</strong></td>
-               <td align="center" class="top2 bottom2 right2 admin_header"><strong>{--ADMIN_REGISTER_EXTENSION--}</strong></td>
-               <td align="center" class="top2 bottom2 right2 admin_header"><strong>{--ADMIN_TASK_INFOS--}</strong></td>
-               <td align="center" class="top2 bottom2 right2 admin_header"><strong>{--ADMIN_MEMBER_UID--}</strong></td>
-               <td align="center" class="top2 bottom2 right2 admin_header"><strong>{--ADMIN_TASK_TYPE--}</strong></td>
-               <td align="center" class="top2 bottom2 right2 admin_header"><strong>{--ADMIN_TASK_CREATED--}</strong></td>
-       </tr>
+<tr>
+       <td colspan="7" align="center" class="admin_task_header top2 left2 right2">
+               <div class="admin_welcome">{--ADMIN_TASK_SYSTEM_WELCOME--}</div>
+       </td>
+</tr>
+<tr>
+       <td align="center" class="top2 bottom2 right2 left2 admin_header"><strong>{--ID_SELECT--}</strong></td>
+       <td align="center" class="top2 bottom2 right2 admin_header"><strong>{--ADMIN_ASSIGNED_ADMIN--}</strong></td>
+       <td align="center" class="top2 bottom2 right2 admin_header"><strong>{--ADMIN_REGISTER_EXTENSION--}</strong></td>
+       <td align="center" class="top2 bottom2 right2 admin_header"><strong>{--ADMIN_TASK_INFOS--}</strong></td>
+       <td align="center" class="top2 bottom2 right2 admin_header"><strong>{--ADMIN_MEMBER_UID--}</strong></td>
+       <td align="center" class="top2 bottom2 right2 admin_header"><strong>{--ADMIN_TASK_TYPE--}</strong></td>
+       <td align="center" class="top2 bottom2 right2 admin_header"><strong>{--ADMIN_TASK_CREATED--}</strong></td>
+</tr>
index 34a75abadb624646faa33cf4a38c75e1d5d23278..e26f988e5c3f8badd1fa23570130b087a1c94787 100644 (file)
@@ -3,9 +3,8 @@
 <table border="0" cellspacing="0" cellpadding="0" class="admin_table register">
        <tr>
                <td colspan="2" align="center" class="admin_title">
-                       <div class="admin_fatal">{--ADMIN_NOT_REGISTERED--}</div>
-               <br />
-               <strong>{--ADMIN_REGISTER_NOW--}</strong></td>
+                       <strong>{--ADMIN_REGISTER_NOW--}</strong>
+               </td>
        </tr>
        <tr>
                <td colspan="2" height="14" class="seperator">&nbsp;</td>
index 6c9c0892e21c63ce27f56bbef8e290350c45ad68..1c83398e87d3d318edd147c3a9df309ba128846b 100644 (file)
@@ -1,8 +1,12 @@
-<table border="0" cellspacing="0" cellpadding="0" align="center" class="admin_table dashed">
-<tr>
-       <td class="admin_title2 bottom2">{--MESSAGE_HEADER--}</td>
-</tr>
-<tr>
-       <td class="admin_message"><strong>$content</strong></td>
-</tr>
-</table>
+<div align="center" style="margin-top:10px;margin-bottom:10px">
+
+<div style="width:550px" class="admin_table dashed">
+       <div class="admin_title2 bottom2">
+               {--MESSAGE_HEADER--}
+       </div>
+       <div class="admin_message">
+               $content
+       </div>
+</div>
+
+</div>
index 24731f2b25041a4ad594ea5a095046cde0c3e3f2..230e55d8b1ce9671a473b0c0c8dce7bb2cd9ff44 100644 (file)
@@ -84,65 +84,66 @@ ul, ol {
 }
 
 .runtime_fatalcontent {
-       text-align                      : left;
-       font-size                       : 12px;
+       text-align                              : left;
+       font-size                                       : 12px;
 }
 
 .admin {
        color                           : #000000;
-       background-color        : #FFFFFF;
+       background-color                : #FFFFFF;
        font-family                     : Verdana, Arial, Geneva, Helvetica, sans-serif;
 }
 
 .admin_note {
        color                           : #000000;
-       font-size                       : 12px;
+       font-size                               : 12px;
 }
 
 DIV.admin_note {
-       padding-top         : 10px;
-       padding-right       : 10px;
-       padding-left        : 10px;
+       padding-top                     : 10px;
+       padding-right                   : 10px;
+       padding-left                    : 10px;
 }
 
 .admin_fatal {
        color                           : #000000;
-       font-size                       : 18px;
+       font-size                               : 18px;
 }
 
 .admin_edit, .member_confirm {
-       background-color        : #FFFFFF;
+       background-color                : #FFFFFF;
 }
 
 .member_banner {
-       background-color        : #FFFFFF;
+       background-color                : #FFFFFF;
        width                           : 488px;
 }
 
 .admin_error {
-       background-color        : #FFFFFF;
+       background-color                : #FFFFFF;
        color                           : #000000;
-       font-size                       : 10px;
+       font-size                               : 10px;
 }
 
 .admin_select, .guest_select, .member_select {
        border                          : solid 1px;
-       border-color            : #000000;
-       background-color        : #EEEEFF;
+       border-color                    : #000000;
+       background-color                : #EEEEFF;
 }
 
 .admin_register, .admin_desc_header, .admin_done, .admin_title, .member_title2, .guest_title2, .admin_message {
-       background-color        : #EEEEFF;
+       background-color                : #EEEEFF;
        color                           : #000000;
        text-align                      : center;
 }
 
 .admin_title2 {
-       background-color        : #EEEEFF;
+       font-weight                     : bold;
+       padding                         : 4px;
+       background-color                : #EEEEFF;
        color                           : #000000;
        text-align                      : center;
-       height                          : 25px;
-       font-size                       : 14px;
+       font-size                               : 14px;
 }
 
 .member_done, .guest_done {
@@ -150,7 +151,7 @@ DIV.admin_note {
 }
 
 .member_misc {
-       background-color        : #FFFFFF;
+       background-color                : #FFFFFF;
 }
 
 .admin_misc, .member_misc {
@@ -166,40 +167,40 @@ DIV.admin_note {
 }
 
 .admin_welcome {
-       background-color        : #EEEEFF;
+       background-color                : #EEEEFF;
        color                           : #000000;
-       vertical-align          : middle;
-       font-size                       : 18px;
+       vertical-align                  : middle;
+       font-size                               : 18px;
        height                          : 50px;
 }
 
 .admin_header {
-       background-color        : #EEEEFF;
+       background-color                : #EEEEFF;
 }
 
 .admin_menu {
-       background-color        : #EEEEFF;
+       background-color                : #EEEEFF;
        color                           : #000000;
        width                           : 230px;
 }
 
 .admin_logout {
-       background-color        : #DDDDFF;
+       background-color                : #DDDDFF;
        color                           : #000000;
 }
 
 .admin_desc_cont {
-       text-align          : left;
-       background-color    : #FFFFFF;
+       text-align                      : left;
+       background-color                : #FFFFFF;
 }
 
 .admin_table, .member_table {
-       background-color        : #FFFFFF;
+       background-color                : #FFFFFF;
 }
 
 .admin_editmenu {
-       min-width                       : 500px;
-       max-width                       : 90%;
+       min-width                               : 500px;
+       max-width                               : 90%;
 }
 
 .admin_form_header {
@@ -635,17 +636,17 @@ DIV.admin_note {
 }
 
 .admin_message {
-       margin-bottom   : 15px;
+       padding-bottom                  : 15px;
 }
 
 #show_timings_block {
        margin-top                      : 5px;
-       tex-align                       : center;
-       border              : solid 1px;
-       border-color        : #000000;
-       background-color    : #EEEEFF;
-       font-size           : 10px;
-       vertical-align          : middle;
+       tex-align                               : center;
+       border                          : solid 1px;
+       border-color                    : #000000;
+       background-color                : #EEEEFF;
+       font-size                               : 10px;
+       vertical-align                  : middle;
        width                           : 465px;
        height                          : 22px;
        z-index                         : 0;
@@ -654,13 +655,13 @@ DIV.admin_note {
 .show_timings_column {
        z-index                         : 10;
        top                                     : 3px;
-       background-color    : #FFFFFF;
-       position                        : relative;
+       background-color                : #FFFFFF;
+       position                                : relative;
        margin                          : 0px;
        width                           : 150px;
        display                         : block;
-       border              : solid 1px;
-       border-color        : #000000;
+       border                          : solid 1px;
+       border-color                    : #000000;
 }
 
 .show_timings_data {
@@ -670,7 +671,7 @@ DIV.admin_note {
 
 .login_failure_header {
        text-align                      : center;
-       background-color        : #EEEEFF;
+       background-color                : #EEEEFF;
        font-weight                     : bold;
 }
 
index 4c301c2c57bf966b874a0bdc7375cf2db0b57c13..f3c2ff173e32debe657c9a72edb22c7e05391c66 100644 (file)
@@ -151,7 +151,7 @@ DIV.admin_note {
 }
 
 .admin_register, .admin_desc_header, .admin_done, .admin_title, .member_title2, .guest_title2, .admin_message {
-       background-color        : #ddeedd;
+       background-color                : #ddeedd;
        color                           : #009900;
        text-align                      : center;
 }
@@ -542,11 +542,12 @@ DIV.admin_note {
 }
 
 .admin_title2 {
-       background-color        : #ddeedd;
+       font-weight                     : bold;
+       padding                         : 4px;
+       background-color                : #ddeedd;
        color                           : #000099;
        text-align                      : center;
-       height                          : 25px;
-       font-size                       : 14px;
+       font-size                               : 14px;
 }
 
 .member_unconfirmed {
@@ -661,7 +662,8 @@ DIV.admin_note {
 }
 
 .admin_message {
-       margin-bottom   : 15px;
+       padding-top                     : 5px;
+       padding-bottom                  : 5px;
 }
 
 #show_timings_block {
index 98771c0ef0b6c95baf6e12db5e2ad36ee03d2447..15d6e6044757a240ac0e00cb10e3144c23b68349 100644 (file)
@@ -597,10 +597,11 @@ DIV.admin_note {
 }
 
 .admin_title2 {
+       font-weight             : bold;
+       padding                 : 4px;
        background-color        : #DDDDAA;
        color                   : #880000;
        text-align              : center;
-       height                  : 25px;
        font-size                       : 14px;
 }