]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-reflinks.php
Fix for missing array elements
[mailer.git] / inc / modules / member / what-reflinks.php
index aa806b1237e147eb3dc9adab69d9bbf622d638d4..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,15 +47,9 @@ if (!defined('__SECURITY')) {
 // Add description as navigation point
 addMenuDescription('member', __FILE__);
 
-// Load current referal clicks
-if (!fetchUserData(getMemberId())) {
-       // Something really bad happened
-       debug_report_bug('No user account ' . getMemberId() . ' found.');
-} // END - if
-
 // Prepare some data
-$content['ref_clicks'] = getUserData('ref_clicks');
-$content['userid']     = getMemberId();
+$content['userid']           = getMemberId();
+$content['nickname_content'] = '';
 
 // @TODO Move this into a filter
 if (isExtensionActive('nickname')) {
@@ -78,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 = '';