Change format of pin message

This commit is contained in:
Ceda EI 2018-06-11 19:00:36 +05:30
parent 00ee8faec1
commit ee5b5a6ee9
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ function chain_to_string($chain) {
for ($i = count($chain) - 1; $i >= 0 ; $i--) {
$string .= $chain[$i]['username'];
if ($i != 0) {
$string .= "";
$string .= "\n";
}
}
return $string;