Skip to content
Snippets Groups Projects
Commit e4fbc106 authored by Ghislain Loas's avatar Ghislain Loas
Browse files

dev #67009 improve album label rendering

parent b6df8deb
Branches
Tags
2 merge requests!2467Dev#67009 configuration de la boite bibliotheque numerique dans le contexte actuelle a de 100000 albums,!2436Dev#67009 configuration de la boite bibliotheque numerique dans le contexte actuelle a de 100000 albums
Pipeline #3125 failed with stage
in 25 minutes and 49 seconds
......@@ -1101,7 +1101,7 @@ class Class_Album extends Storm_Model_Abstract {
* @return string
*/
public function getAbsolutePath() {
return $this->getCategorie()->getAbsolutePath() . '>' . $this->getTitre();
return $this->getCategorie()->getAbsolutePath() . ' > ' . $this->getTitre();
}
......
......@@ -210,7 +210,7 @@ class Class_AlbumCategorie extends Storm_Model_Abstract {
public function getAbsolutePath() {
$path = $this->getLibelle();
if ($this->hasParentCategorie())
$path = $this->getParentCategorie()->getAbsolutePath().'>'.$path;
$path = $this->getParentCategorie()->getAbsolutePath() . ' > ' . $path;
return $path;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment