Skip to content
Snippets Groups Projects
Commit 332a2c9e authored by Meusburger's avatar Meusburger
Browse files

Merge branch 'hotline#22882_location_information_in_article' into 'stable'

Hotline#22882 location information in article

See merge request !909
parents d960fc63 5c10d378
Branches
Tags
3 merge requests!915Master,!914Hotline master,!913Stable
......@@ -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();
......
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