]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-reflinks.php
Fix for #138 and some 'empty version' fixed
[mailer.git] / inc / modules / member / what-reflinks.php
index aa806b1237e147eb3dc9adab69d9bbf622d638d4..7a02cdecc250e88aef7d42a8d15705110eceb0e7 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                                *
@@ -53,8 +53,9 @@ if (!fetchUserData(getMemberId())) {
 } // END - if
 
 // Prepare some data
-$content['ref_clicks'] = getUserData('ref_clicks');
-$content['userid']     = getMemberId();
+$content['ref_clicks']       = getUserData('ref_clicks');
+$content['userid']           = getMemberId();
+$content['nickname_content'] = '';
 
 // @TODO Move this into a filter
 if (isExtensionActive('nickname')) {
@@ -78,7 +79,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 = '';