]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-reflinks.php
Introduced new wrapper functions to make the code more readable, new extension ext...
[mailer.git] / inc / modules / member / what-reflinks.php
index 5f746a4933d58aea9fbce2d749920a35fceb84bd..d31f73574293148426ca90e0b2d61443b7c47e79 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 10/19/2003 *
- * ===============                              Last change: 09/10/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 10/19/2003 *
+ * ===================                          Last change: 09/10/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-reflinks.php                                *
@@ -18,6 +18,7 @@
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -46,23 +47,14 @@ if (!defined('__SECURITY')) {
 // Add description as navigation point
 addMenuDescription('member', __FILE__);
 
-// Load current referal clicks
-$result = SQL_QUERY_ESC("SELECT `ref_clicks` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `userid`=%s LIMIT 1",
-       array(getUserId()), __FILE__, __LINE__);
-
-// Load it
-$content = SQL_FETCHARRAY($result);
-
-// Free result
-SQL_FREERESULT($result);
-
 // Prepare some data
-$content['userid'] = getUserId();
+$content['userid']           = getMemberId();
+$content['nickname_content'] = '';
 
 // @TODO Move this into a filter
 if (isExtensionActive('nickname')) {
        // Add nickname link when nickname is entered
-       $nick = getNickname(getUserId());
+       $nick = getNickname(getMemberId());
 
        if (!empty($nick)) {
                // Display nickname link
@@ -81,7 +73,7 @@ if (SQL_NUMROWS($result) > 0) {
        // List available ref banners
        $OUT = ''; $SW = 2;
        while ($row = SQL_FETCHARRAY($result)) {
-               $test = str_replace(getConfig('URL'), getConfig('PATH'), $row['url']); $size = 0;
+               $test = str_replace(getConfig('URL'), getConfig('PATH'), $row['url']); $size = '0';
                if ($test == $row['url']) {
                        // Download banner (I hope you keep the banner on same server???)
                        $fp = sendGetRequest($row['url']); $bannerContent = '';
@@ -107,7 +99,7 @@ if (SQL_NUMROWS($result) > 0) {
 
                // Add some more data
                $row['sw']     = $SW;
-               $row['userid'] = getUserId();
+               $row['userid'] = getMemberId();
 
                // Add row
                $OUT .= loadTemplate('member_reflinks_row', true, $row);