Skip to content

Commit

Permalink
fixed mail export format
Browse files Browse the repository at this point in the history
  • Loading branch information
TimRepke committed Oct 17, 2015
1 parent c79e805 commit 457b68f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions registration-system/admin/pages_mail.php
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,8 @@

$text .= '<textarea style="height:300px; width:800px" id="mails">'.$dsa;
foreach($mails as $mehl){
$text .= "\"".$mehl['forname']." ".$mehl['sirname']."\" ".$mehl['mehl']."; ";
$ajax .= "\"".$mehl['forname']." ".$mehl['sirname']."\" ".$mehl['mehl']."; ";
$text .= $mehl['forname']." ".$mehl['sirname']." <".$mehl['mehl'].">; ";
$ajax .= $mehl['forname']." ".$mehl['sirname']." <".$mehl['mehl'].">; ";
}
$text .= '</textarea>';

Expand Down

0 comments on commit 457b68f

Please sign in to comment.