X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-add_points.php;h=5eb9a3d1b1380be408b525409143ad372b97e55f;hp=a77ac46ea98c079e2abed16ecfca81338aa1673e;hb=f97a999e0737c0007ae9c3c26dfef49f75a175ac;hpb=e01fcf1ca8ddeb72af76465df3ef72301a1cdae7 diff --git a/inc/modules/admin/what-add_points.php b/inc/modules/admin/what-add_points.php index a77ac46ea9..5eb9a3d1b1 100644 --- a/inc/modules/admin/what-add_points.php +++ b/inc/modules/admin/what-add_points.php @@ -10,10 +10,10 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Manuell einem Mitglied Punkte gutschreiben * * -------------------------------------------------------------------- * - * $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,15 +38,15 @@ // 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__); // Fix a notice -if (!REQUEST_ISSET_GET(('uid'))) REQUEST_SET_GET('uid', ""); +if (!REQUEST_ISSET_GET('uid')) REQUEST_SET_GET('uid', ''); if (REQUEST_GET('uid') == "all") { // Add points to all accounts @@ -59,7 +59,7 @@ if (REQUEST_GET('uid') == "all") { __FILE__, __LINE__); // Process all entries - while ($content = SQL_FETCHROW($result_main)) { + while ($content = SQL_FETCHARRAY($result_main)) { // Remove depth to prevent booking errors. This is a bad coding // practice, thats also why we need to write this project from // scratch... @@ -81,12 +81,12 @@ if (REQUEST_GET('uid') == "all") { SQL_FREERESULT($result_main); // Output message - LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_ALL_POINTS_ADDED')); + LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_ALL_POINTS_ADDED')); } else { // Display form add points LOAD_TEMPLATE("admin_add_points_all"); } -} elseif (REQUEST_ISSET_GET(('uid'))) { +} elseif (REQUEST_ISSET_GET('uid')) { // User ID found in URL so we use this give him some credits $result = SQL_QUERY_ESC("SELECT surname, family, email FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s AND `status`='CONFIRMED' LIMIT 1", array(bigintval(REQUEST_GET('uid'))), __FILE__, __LINE__); @@ -114,7 +114,7 @@ if (REQUEST_GET('uid') == "all") { $msg = LOAD_EMAIL_TEMPLATE("add-points", $content, bigintval(REQUEST_GET('uid'))); SEND_EMAIL(bigintval(REQUEST_GET('uid')), getMessage('ADMIN_ADD_SUBJ'), $msg); - LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_POINTS_ADDED')); + LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_POINTS_ADDED')); } else { // Opps, missing form here // @TODO Rewrite these both constants @@ -124,7 +124,7 @@ if (REQUEST_GET('uid') == "all") { } } else { // User not found! - LOAD_TEMPLATE("admin_settings_saved", false, "
".sprintf(getMessage('ADMIN_MEMBER_404'), REQUEST_GET('uid'))."
"); + LOAD_TEMPLATE('admin_settings_saved', false, "
".sprintf(getMessage('ADMIN_MEMBER_404'), REQUEST_GET('uid'))."
"); } } else { // Output selection form with all confirmed user accounts listed