]> git.mxchange.org Git - mailer.git/blobdiff - 0.2.1/inc/libs/autopurge_functions.php
win32 to unix line delimiters changed
[mailer.git] / 0.2.1 / inc / libs / autopurge_functions.php
index fb64ccd43e2cb1bb4a12cc7886be8d7c928c6661..7318af10785ddba49a27e50dd7827493306eaeb1 100644 (file)
@@ -1,87 +1,87 @@
-<?php\r
-/************************************************************************\r
- * MXChange v0.2.1                                    Start: 05/30/2004 *\r
- * ===============                              Last change: 08/09/2004 *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * File              : autopurge_functions.php                          *\r
- * -------------------------------------------------------------------- *\r
- * Short description : Special functions                                *\r
- * -------------------------------------------------------------------- *\r
- * Kurzbeschreibung  : Spezielle Funktionen                             *\r
- * -------------------------------------------------------------------- *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *\r
- * For more information visit: http://www.mxchange.org                  *\r
- *                                                                      *\r
- * This program is free software; you can redistribute it and/or modify *\r
- * it under the terms of the GNU General Public License as published by *\r
- * the Free Software Foundation; either version 2 of the License, or    *\r
- * (at your option) any later version.                                  *\r
- *                                                                      *\r
- * This program is distributed in the hope that it will be useful,      *\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of       *\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *\r
- * GNU General Public License for more details.                         *\r
- *                                                                      *\r
- * You should have received a copy of the GNU General Public License    *\r
- * along with this program; if not, write to the Free Software          *\r
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *\r
- * MA  02110-1301  USA                                                  *\r
- ************************************************************************/\r
-\r
-// Some security stuff...\r
-if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))\r
-{\r
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";\r
-       require($INC);\r
-}\r
-\r
-function AUTOPURGE_ADD_POINTS($uid, $points)\r
-{\r
-       global $jackpot;\r
-       // Check if he has locked points or not\r
-       $result = SQL_QUERY_ESC("SELECT ref_payout FROM "._MYSQL_PREFIX."_user_data WHERE userid=%d LIMIT 1",\r
-        array(bigintval($uid)), __FILE__, __LINE__);\r
-       list($payout) = SQL_FETCHROW($result);\r
-       SQL_FREERESULT($result);\r
-       if (($payout > 0) && (!empty($payout)))\r
-       {\r
-               // Yes, he has.\r
-               $target = "locked_points";\r
-       }\r
-        elseif ($payout == "0")\r
-       {\r
-               // No, he has not\r
-               $target = "points";\r
-       }\r
-       // Add points...\r
-       if (empty($payout))\r
-       {\r
-               // ... to jackpot account\r
-               ADD_JACKPOT($points);\r
-               if (empty($jackpot)) $jackpot = "0";\r
-               $jackpot += $points;\r
-       }\r
-        else\r
-       {\r
-               // .. to user's account\r
-               $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_points SET %s=%s+%s WHERE userid=%d AND ref_depth='0' LIMIT 1",\r
-                array($target, $target, $points, bigintval($uid)), __FILE__, __LINE__);\r
-\r
-               // Update mediadata as well\r
-               if ((GET_EXT_VERSION("mediadata") >= "0.0.4") && ($target == "points"))\r
-               {\r
-                       // Update database\r
-                       MEDIA_UPDATE_ENTRY(array("total_points"), "add", $points);\r
-               }\r
-\r
-               // Send out mail to user\r
-               $msg = LOAD_EMAIL_TEMPLATE("member_autopurge_points", TRANSLATE_COMMA($points), $uid);\r
-               SEND_EMAIL($uid, AUTOPURGE_MEMBER_SUBJECT, $msg);\r
-       }\r
-}\r
-\r
-//\r
-?>\r
+<?php
+/************************************************************************
+ * MXChange v0.2.1                                    Start: 05/30/2004 *
+ * ===============                              Last change: 08/09/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : autopurge_functions.php                          *
+ * -------------------------------------------------------------------- *
+ * Short description : Special functions                                *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : Spezielle Funktionen                             *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * 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 (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
+{
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       require($INC);
+}
+
+function AUTOPURGE_ADD_POINTS($uid, $points)
+{
+       global $jackpot;
+       // Check if he has locked points or not
+       $result = SQL_QUERY_ESC("SELECT ref_payout FROM "._MYSQL_PREFIX."_user_data WHERE userid=%d LIMIT 1",
+        array(bigintval($uid)), __FILE__, __LINE__);
+       list($payout) = SQL_FETCHROW($result);
+       SQL_FREERESULT($result);
+       if (($payout > 0) && (!empty($payout)))
+       {
+               // Yes, he has.
+               $target = "locked_points";
+       }
+        elseif ($payout == "0")
+       {
+               // No, he has not
+               $target = "points";
+       }
+       // Add points...
+       if (empty($payout))
+       {
+               // ... to jackpot account
+               ADD_JACKPOT($points);
+               if (empty($jackpot)) $jackpot = "0";
+               $jackpot += $points;
+       }
+        else
+       {
+               // .. to user's account
+               $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_points SET %s=%s+%s WHERE userid=%d AND ref_depth='0' LIMIT 1",
+                array($target, $target, $points, bigintval($uid)), __FILE__, __LINE__);
+
+               // Update mediadata as well
+               if ((GET_EXT_VERSION("mediadata") >= "0.0.4") && ($target == "points"))
+               {
+                       // Update database
+                       MEDIA_UPDATE_ENTRY(array("total_points"), "add", $points);
+               }
+
+               // Send out mail to user
+               $msg = LOAD_EMAIL_TEMPLATE("member_autopurge_points", TRANSLATE_COMMA($points), $uid);
+               SEND_EMAIL($uid, AUTOPURGE_MEMBER_SUBJECT, $msg);
+       }
+}
+
+//
+?>