]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-unlock_sponsor.php
Cache class rewritten to better convention
[mailer.git] / inc / modules / admin / what-unlock_sponsor.php
index 812dca9103f1d49df253896cc51e4a229e4012a1..81328dc904de2e6dbe57e5788d4055953c1f03d1 100644 (file)
  * 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 *
+ * 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.       *
+ * 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')) || (!is_admin())) {
+if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4)."/security.php";
        require($INC);
 }
 
 // Add description as navigation point
-ADD_DESCR("admin", basename(__FILE__));
+ADD_DESCR("admin", __FILE__);
 
 // Check if admin has submitted form
 if (isset($_POST['ok'])) {
@@ -61,17 +72,16 @@ ORDER BY sp.pay_name",
                                        // Payment does exist
                                        while(list($aid, $count, $ordered, $status, $pname, $prate, $pcurr) = SQL_FETCHROW($result))
                                        {
-                                               if ($aid == "0") {
-                                                       // No admin assigned!
-                                                       $aid = SPONSOR_NO_ADMIN;
-                                               } else {
+                                               // Set default email
+                                               $email = SPONSOR_NO_ADMIN;
+                                               if ($aid > "0") {
                                                        // Load admin's email address for contact
-                                                       $aid = GET_ADMIN_EMAIL(GET_ADMIN_LOGIN(($aid));
+                                                       $email = GET_ADMIN_EMAIL($aid);
                                                }
 
                                                // Transfer data to array
                                                $content = array(
-                                                       'aid'   => $aid,
+                                                       'aid'   => $email,
                                                        'order' => ($count * $prate)." ".$pcurr,
                                                        'stamp' => MAKE_DATETIME($ordered, "2"),
                                                        'pname' => $pname,