Commit 92f8dd18 authored by Antonio.Suerte's avatar Antonio.Suerte

CDS Auto-omit of dashes in phone num.

parent 7ce9f55f
...@@ -181,7 +181,7 @@ class EasyPaymentLinkAPI extends System { ...@@ -181,7 +181,7 @@ class EasyPaymentLinkAPI extends System {
], ],
"contact" => [ "contact" => [
"email" => $this -> getColumnData($account, PARAM_MAIL), "email" => $this -> getColumnData($account, PARAM_MAIL),
"mobile" => $this -> getColumnData($account, PARAM_TEL) "mobile" => preg_replace("/(\-| |\(|\))/", NO_STRING, $this -> getColumnData($account, PARAM_TEL))
] ]
], ],
"payment" => [ "payment" => [
......
Markdown is supported
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