Subversion Repositories eFlore/Projets.eflore-projets

Compare Revisions

Regard whitespace Rev 195 → Rev 196

/trunk/services/bibliotheque/nom/NomDO.php
7,7 → 7,7
}
public function getTag($tag) {
return $this->infos[$tag];
return isset($this->infos[$tag]) ? $this->infos[$tag] : null;
}
public function verifierTag($tag) {
17,9 → 17,5
}
return $existe;
}
 
public function getNomDetails() {
return $this->getTitle().' by '.$this->getAuthor();
}
}
?>