public function __get()

in js/plugins/ajax-contact-extend/classes/twitter/EpiOAuth.php [220:232]


  public function __get($name)
  {
  if($this->__resp->code < 200 || $this->__resp->code > 299)
    return false;

  parse_str($this->__resp->data, $result);
  foreach($result as $k => $v)
  {
    $this->$k = $v;
  }

  return $result[$name];
  }