PHP compatibility fix

This commit is contained in:
Albert Santoni 2015-03-24 10:34:48 -04:00
parent 3d03f837d2
commit 084c6dd662

View file

@ -824,7 +824,7 @@ class Application_Model_Preference
public static function SetPlanLevel($plan)
{
$oldPlanLevel = GetPlanLevel();
$oldPlanLevel = self::GetPlanLevel();
self::setValue("plan_level", $plan);
//We save the old plan level temporarily to facilitate conversion tracking
self::setValue("old_plan_level", $oldPlanLevel);