X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-stats.php;h=6f740bf7f212efdee773fdef491cd765d136897d;hp=9b173b0a92881f3ef70b583c58c91d116574b495;hb=f97a999e0737c0007ae9c3c26dfef49f75a175ac;hpb=e01fcf1ca8ddeb72af76465df3ef72301a1cdae7 diff --git a/inc/modules/member/what-stats.php b/inc/modules/member/what-stats.php index 9b173b0a92..6f740bf7f2 100644 --- a/inc/modules/member/what-stats.php +++ b/inc/modules/member/what-stats.php @@ -10,10 +10,10 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Statistik ueber gesendete Mails * * -------------------------------------------------------------------- * - * $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,14 +38,14 @@ // Some security stuff... if (!defined('__SECURITY')) { - $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); } elseif (!IS_MEMBER()) { - LOAD_URL("modules.php?module=index"); + LOAD_URL('modules.php?module=index'); } // Add description as navigation point -ADD_DESCR("member", __FILE__); +ADD_DESCR('member', __FILE__); // Init output $main_content = array(); @@ -60,7 +60,7 @@ ORDER BY timestamp DESC", // Are there mails left in pool? if (SQL_NUMROWS($result) > 0) { // Load all orders - $OUT = ""; $SW = 2; + $OUT = ''; $SW = 2; while ($data = SQL_FETCHARRAY($result)) { // Is the ZIP code set? If not, set dashes if (empty($data['zip'])) $data['zip'] = "---"; @@ -90,7 +90,7 @@ if (SQL_NUMROWS($result) > 0) { $main_content['pool'] = LOAD_TEMPLATE("member_pool_table", true, $OUT); } else { // No mails in pool! - $main_content['pool'] = LOAD_TEMPLATE("admin_settings_saved", true, getMessage('MEMBER_NO_MAILS_IN_POOL')); + $main_content['pool'] = LOAD_TEMPLATE('admin_settings_saved', true, getMessage('MEMBER_NO_MAILS_IN_POOL')); } // Free result @@ -106,7 +106,7 @@ ORDER BY timestamp_ordered DESC", if (SQL_NUMROWS($result) > 0) { // Mail orders are in pool so we can display them - $OUT = ""; $SW = 2; + $OUT = ''; $SW = 2; while ($data = SQL_FETCHROW($result)) { // Prepare data for the template $content = array( @@ -131,7 +131,7 @@ if (SQL_NUMROWS($result) > 0) { $main_content['stats'] = LOAD_TEMPLATE("member_stats_table", true, $OUT); } else { // No mail orders fond - $main_content['stats'] = LOAD_TEMPLATE("admin_settings_saved", true, getMessage('MEMBER_NO_MAILS_IN_STATS')); + $main_content['stats'] = LOAD_TEMPLATE('admin_settings_saved', true, getMessage('MEMBER_NO_MAILS_IN_STATS')); } // Free result