format all numbers

This commit is contained in:
osaajani 2019-11-29 03:07:39 +01:00
parent cadb63cbe8
commit 53fe0b11f3
8 changed files with 12 additions and 12 deletions

View file

@ -153,7 +153,7 @@
<tbody>
<?php foreach ($sendeds as $sended) { ?>
<tr>
<td><?php $this->s($sended['destination']); ?></td>
<td><?php $this->s(\controllers\internals\Tool::phone_format($sended['destination'])); ?></td>
<td><?php $this->s($sended['at']); ?></td>
</tr>
<?php } ?>
@ -188,7 +188,7 @@
<tbody>
<?php foreach ($receiveds as $received) { ?>
<tr>
<td><?php $this->s($received['origin']); ?></td>
<td><?php $this->s(\controllers\internals\Tool::phone_format($received['origin'])); ?></td>
<td><?php $this->s($received['at']); ?></td>
<td><?php echo ($received['command']) ? 'Oui' : 'Non'; ?></td>
</tr>