mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
Merge pull request #1205 from sejin7940/extra_tel
사용자정의 전화번호를 출력할 때 포맷을 변경 - 일부 기기에서 지원하는 전화걸기 지원 자동인식에 활용될 수 있음
This commit is contained in:
commit
250a957bf3
1 changed files with 1 additions and 1 deletions
|
|
@ -297,7 +297,7 @@ class ExtraItem
|
|||
return ($value) ? sprintf('<a href="mailto:%s">%s</a>', $value, $value) : "";
|
||||
|
||||
case 'tel' :
|
||||
return sprintf('%s - %s - %s', $value[0], $value[1], $value[2]);
|
||||
return sprintf('%s-%s-%s', $value[0], $value[1], $value[2]);
|
||||
|
||||
case 'textarea' :
|
||||
return nl2br($value);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue