You are here

function PEAR_Error::addUserInfo in Flickr API 5

File

phpFlickr/PEAR/PEAR.php, line 1039

Class

PEAR_Error
Standard PEAR error class for PHP 4

Code

function addUserInfo($info) {
  if (empty($this->userinfo)) {
    $this->userinfo = $info;
  }
  else {
    $this->userinfo .= " ** {$info}";
  }
}