From 2c8fcbf50699c4a274a46f866d5d5533e44df3c5 Mon Sep 17 00:00:00 2001 From: Xu Date: Sun, 28 Mar 2021 16:16:59 +0200 Subject: [PATCH] AngelTypes_view: use mailto and tel links --- includes/view/AngelTypes_view.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/view/AngelTypes_view.php b/includes/view/AngelTypes_view.php index af08ae3e..4c8da3a5 100644 --- a/includes/view/AngelTypes_view.php +++ b/includes/view/AngelTypes_view.php @@ -478,8 +478,8 @@ function AngelTypes_render_contact_info($angeltype) { return heading(__('Contact'), 3) . description([ __('Name') => $angeltype['contact_name'], - __('DECT') => $angeltype['contact_dect'], - __('E-Mail') => $angeltype['contact_email'] + __('DECT') => sprintf('%1$s', $angeltype['contact_dect']), + __('E-Mail') => sprintf('%1$s', $angeltype['contact_email']), ]); }