Skip to content

Commit

Permalink
Fix syntax.
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Jul 31, 2014
1 parent cd5bff8 commit 4950b14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imp/lib/Contacts.php
Expand Up @@ -64,7 +64,7 @@ public function __get($name)
if (!isset($this->_fields)) {
$this->_init();
}
return $this->_{$name};
return $this->{'_' . $name};

case 'source_list':
if ($registry->hasMethod('contacts/sources')) {
Expand Down

0 comments on commit 4950b14

Please sign in to comment.