TalkPTC

The MarketPlace => Development and Support => Aurora Fixes And Updates => Topic started by: Ayman on June 07, 2012, 10:49:27 PM

Title: Fix For Minimum Clicks Required For Payout In Aurora 4.0.8D Versions
Post by: Ayman on June 07, 2012, 10:49:27 PM
- Lots Of Sites Using Aurora 4.0.8d Versions Have This Problem , Here's The Fix For It

> In members/profile.php

*Find This Line :
Code: [Select]
elseif($thismemberinfo['coclicks'] != $settings['minimum_ads']) {
        $error = "You do not have the required amount of clicks to request payout!";
}

* Change It To :

Code: [Select]
elseif($thismemberinfo['coclicks'] < $settings['minimum_ads']) {
        $error = "You do not have the required amount of clicks to request payout!";
}


And Problem Is Fixed
Title: Re: Fix For Minimum Clicks Required For Payout In Aurora 4.0.8D Versions
Post by: tpramar on December 31, 2014, 06:04:15 PM
Great admin thanx a lot