Old config.php is now automatically updated to new config-local.php format, several...
[mailer.git] / inc / modules / admin / what-sub_points.php
index 57123d9487eaae15debe4d27b1ae65af8ba10784..804e29413fef74ece1565f4e33fa47970c5eafa5 100644 (file)
@@ -56,7 +56,7 @@ if (REQUEST_GET('uid') == "all") {
        // Is the form sent?
        if ((IS_FORM_SENT()) && (REQUEST_POST('points') > 0)) {
                $result_main = SQL_QUERY("SELECT userid, email FROM `{!_MYSQL_PREFIX!}_user_data` WHERE `status`='CONFIRMED' ORDER BY `userid` ASC",
-                       __FILE__, __LINE__);
+               __FILE__, __LINE__);
                while ($content = SQL_FETCHARRAY($result_main)) {
                        // Ok, add points to used points and send an email to him...
                        SUB_POINTS("admin_all", $content['userid'], REQUEST_POST('points'));
@@ -82,7 +82,7 @@ if (REQUEST_GET('uid') == "all") {
 } 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__);
+       array(bigintval(REQUEST_GET('uid'))),__FILE__, __LINE__);
        if (SQL_NUMROWS($result) == 1) {
                // Selected user does exist
                $content = SQL_FETCHARRAY($result);