Skip to content
Snippets Groups Projects
Commit d1f71a5e authored by goujonpa's avatar goujonpa
Browse files

fix

parent 9df74656
No related branches found
No related tags found
No related merge requests found
......@@ -29,9 +29,10 @@ class PhoneField extends Field
public function show() {
$num = $this->value;
$html = "";
for($i = 0; $i < 5; $i++) {
$html .= substr($num, 2*$i, 2);
$html .= substr($num, 0, 2);
for($i = 1; $i < 5; $i++) {
$html .= ".";
$html .= substr($num, 2*$i, 2);
}
return $html;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment