diff options
-rw-r--r-- | view/groupeditor.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/groupeditor.tpl b/view/groupeditor.tpl index aa3853375..755985eb3 100644 --- a/view/groupeditor.tpl +++ b/view/groupeditor.tpl @@ -1,7 +1,7 @@ <div id="group"> <h3>$groupeditor.label_members</h3> <div id="group-members" class="contact_list"> -{{ for $groupeditor.contacts as $c}} $c {{ endfor }} +{{ for $groupeditor.members as $c}} $c {{ endfor }} </div> <div id="group-members-end"></div> <hr id="group-separator" /> @@ -10,7 +10,7 @@ <div id="contacts"> <h3>$groupeditor.label_contacts</h3> <div id="group-all-contacts" class="contact_list"> -{{ for $groupeditor.members as $m}} $m {{ endfor }} +{{ for $groupeditor.contacts as $m}} $m {{ endfor }} </div> <div id="group-all-contacts-end"></div> </div> |