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

fix

parent 22738857
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@ class PhoneField extends Field
public function show() {
$num = $this->value;
$html = "";
for($i = 0; i < 5; i++) {
for($i = 0; $i < 5; $i++) {
$html += substr($num, 2*$i, 2);
$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