Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 3682 → Rev 3683

/branches/v3.00-serfouette/jrest/services/CelWidgetSaisie.php
442,11 → 442,11
private function traiterProjetTags() {
if (strpos($this->projet, ',') === false) {
$this->projetTags = array($this->projet);
$this->projetTags = array('Projets coopƩratifs>'.$this->projet);
} else {
$projetTagsTxt = explode(',', $this->projet);
foreach ($projetTagsTxt as $tag) {
$this->projetTags[] = $tag;
$this->projetTags[] = 'Projets coopƩratifs>'.$tag;
}
}
}