...
 
Commits (2)
......@@ -825,7 +825,7 @@ class User extends \ElggUser
$export['programs'] = $this->getPrograms();
$export['plus'] = (bool) $this->isPlus();
$export['pro'] = (bool) $this->isPro();
$export['pro_published'] = (bool) $this->isProPublished();
$export['pro_published'] = $this->isPro() && $this->isProPublished();
$export['verified'] = (bool) $this->verified;
$export['founder'] = (bool) $this->founder;
$export['disabled_boost'] = (bool) $this->disabled_boost;
......