fix: clarification a selectable group is also an active group

or an active group is also selectable.
pull/1857/head
Alexandre Dulaunoy 2017-01-16 17:07:33 +01:00
parent 569b342ef5
commit 35aaa398cd
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@
<textarea class="input-xxlarge" placeholder="A description of the sharing group." cols="30" rows="6" id="SharingGroupDescription"></textarea>
<div style="display:block;">
<input type="checkbox" style="float:left;" title="Active sharing groups can be selected by users of the local instance when creating events. Generally, sharing groups received through synchronisation will have this disabled until manually enabled." value="1" id="SharingGroupActive" checked></input>
<label for="SharingGroupActive" style="padding-left:20px;">Make the sharing group selectable</label>
<label for="SharingGroupActive" style="padding-left:20px;">Make the sharing group selectable (active)</label>
</div>
<span class="btn btn-inverse" onClick="simpleTabPage(2);">Next page</span>
</div>

View File

@ -16,7 +16,7 @@
<textarea class="input-xxlarge" placeholder="A description of the sharing group." cols="30" rows="6" id="SharingGroupDescription"><?php echo h($sharingGroup['SharingGroup']['description']); ?></textarea>
<div style="display:block;">
<input type="checkbox" style="float:left;" title="Active sharing groups can be selected by users of the local instance when creating events. Generally, sharing groups received through synchronisation will have this disabled until manually enabled." <?php if ($sharingGroup['SharingGroup']['active']) echo "checked"; ?> id="SharingGroupActive"></input>
<label for="SharingGroupActive" style="padding-left:20px;">Make the sharing group selectable</label>
<label for="SharingGroupActive" style="padding-left:20px;">Make the sharing group selectable (active)</label>
</div>
<span class="btn btn-inverse" onClick="simpleTabPage(2);">Next page</span>
</div>