Merge branch 'saas' of github.com:sourcefabric/Airtime into saas

This commit is contained in:
Albert Santoni 2015-07-31 11:44:29 -04:00
commit 78327c4f68
1 changed files with 1 additions and 2 deletions

View File

@ -55,8 +55,7 @@ class Billing
//Blacklist all free plans
foreach ($products as $k => $p) {
Logging::info($p);
if ($p["paytype"] === "free")
if ($p["paytype"] === "free" || strpos($p["name"], "Awesome August 2015") !== false)
{
unset($products[$k]);
}