Skip to content
Snippets Groups Projects

Hotline#22882 location information in article

Merged Ghost User requested to merge hotline#22882_location_information_in_article into stable
Compare and
+ 2
5
Preferences
Compare changes
@@ -30,11 +30,8 @@ class ZendAfi_View_Helper_RenderLieu extends Zend_View_Helper_HtmlElement {
if (nl2br($lieu->getAdresse()))
$adresse[] = nl2br($lieu->getAdresse());
if ($lieu->getCodePostal())
$adresse[] = $lieu->getCodePostal();
if ($lieu->getVille())
$adresse[] = $lieu->getVille();
if ($lieu->getCodePostal() || $lieu->getVille())
$adresse[] = $lieu->getCodePostal() . ' ' . $lieu->getVille();
if ($lieu->getTelephone())
$adresse[] = $lieu->getTelephone();