Skip to content

Commit

Permalink
fixed #6899: LDAP Import Filter Blank E-mail and Filter Duplicates ig…
Browse files Browse the repository at this point in the history
…nored (thanks to pfpDave)
  • Loading branch information
mennodekker committed Nov 19, 2012
1 parent 4be7342 commit 53dfd73
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions application/views/admin/token/ldapform.php
Expand Up @@ -29,11 +29,11 @@
</p>
<p>
<label for='filterblankemail'><?php echo $clang->eT("Filter blank email addresses:"); ?></label>
<input type='checkbox' id='filterblankemail' checked='checked' />
<input type='checkbox' id='filterblankemail' name='filterblankemail' checked='checked' />
</p>
<p>
<label for='filterduplicatetoken'><?php echo $clang->eT("Filter duplicate records:"); ?></label>
<input type='checkbox' id='filterduplicatetoken' checked='checked' />
<input type='checkbox' id='filterduplicatetoken' name='filterduplicatetoken' checked='checked' />
</p>
<input type='hidden' name='subaction' value='uploadldap' />
<p><input type='submit' name='submit' /></p>
Expand Down
2 changes: 1 addition & 1 deletion application/views/admin/token/ldappost.php
Expand Up @@ -22,7 +22,7 @@
[<a href='#' onclick='$("#invalidemaillist").toggle();'><?php $clang->eT("List"); ?></a>]
<div class='badtokenlist' id='invalidemaillist' style='display: none;'>
<?php foreach ($invalidemaillist as $aData) { ?>
<li>$aData</li>
<li><?php echo $aData; ?></li>
<?php } ?>
</div>
<br />
Expand Down

0 comments on commit 53dfd73

Please sign in to comment.