diff --git a/src/Bundle/ChillThirdPartyBundle/Resources/views/Entity/thirdparty.html.twig b/src/Bundle/ChillThirdPartyBundle/Resources/views/Entity/thirdparty.html.twig
index 79aa7be6c..80dcac245 100644
--- a/src/Bundle/ChillThirdPartyBundle/Resources/views/Entity/thirdparty.html.twig
+++ b/src/Bundle/ChillThirdPartyBundle/Resources/views/Entity/thirdparty.html.twig
@@ -110,8 +110,8 @@
}) }}
- {% if thirdparty.telephone %}
- {{ thirdparty.telephone|chill_format_phonenumber }}
+ {% if thirdparty.telephone is not null %}
+ {{ thirdparty.telephone|chill_format_phonenumber }}
{% else %}
{{ 'thirdparty.No_phonenumber'|trans }}
{% endif %}
diff --git a/src/Bundle/ChillThirdPartyBundle/Resources/views/ThirdParty/view.html.twig b/src/Bundle/ChillThirdPartyBundle/Resources/views/ThirdParty/view.html.twig
index 824438fa3..5a6a75225 100644
--- a/src/Bundle/ChillThirdPartyBundle/Resources/views/ThirdParty/view.html.twig
+++ b/src/Bundle/ChillThirdPartyBundle/Resources/views/ThirdParty/view.html.twig
@@ -67,10 +67,10 @@
{{ 'Phonenumber'|trans }}
{% if thirdParty.telephone == null %}
- {{ 'No phone given'|trans }}
+ {{ 'thirdparty.No_phonenumber'|trans }}
{% else %}
-
- {{ thirdParty.telephone|chill_print_or_message("thirdparty.No_phonenumber") }}
+
+ {{ thirdParty.telephone|chill_format_phonenumber }}
{% endif %}