1
0
mirror of https://github.com/moparisthebest/user_sql synced 2024-12-21 23:18:51 -05:00

Fix checkbox "No Mapping" in Domain Mapping Settings

This commit is contained in:
Andreas Boehler 2014-11-18 21:32:20 +01:00
parent d6af9188ff
commit f5f34cbcac

View File

@ -65,7 +65,7 @@ $cfgClass = $ocVersion >= 7 ? 'section' : 'personalblock';
<table>
<tr><td><label for="domain_settings"><?php echo $l -> t('Domain Settings'); ?></label></td><td><table>
<tr><td><input type="radio" name="domain_settings" id="domain_none" value="none" <?php
if($_['domain_settings'] == "")
if($_['domain_settings'] == "" || $_['domain_settings'] == "none")
echo 'checked="checked"';
?>><?php echo $l->t('No Mapping') ?></td></tr>
<tr><td><input type="radio" name="domain_settings" id="domain_server" value="server" <?php