From e4fbc106acb3fcc049b989a07c3dcf62daf847eb Mon Sep 17 00:00:00 2001 From: gloas <gloas@afi-sa.fr> Date: Tue, 12 Dec 2017 11:52:55 +0100 Subject: [PATCH] dev #67009 improve album label rendering --- library/Class/Album.php | 2 +- library/Class/AlbumCategorie.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/library/Class/Album.php b/library/Class/Album.php index df8a65cf6ab..21b8a435071 100644 --- a/library/Class/Album.php +++ b/library/Class/Album.php @@ -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(); } diff --git a/library/Class/AlbumCategorie.php b/library/Class/AlbumCategorie.php index ca57a44f11f..45725998825 100644 --- a/library/Class/AlbumCategorie.php +++ b/library/Class/AlbumCategorie.php @@ -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; } -- GitLab