1
0
mirror of https://github.com/moparisthebest/user_sql synced 2024-11-24 10:02:19 -05:00

Fix a typo.

This commit is contained in:
Andreas Boehler 2015-05-27 22:11:57 +02:00
parent 5fc2571b62
commit 7b722f31c3

View File

@ -64,7 +64,7 @@ $cfgClass = $ocVersion >= 7 ? 'section' : 'personalblock';
</tr> </tr>
<tr><td><label for="sql_column_active"><?php echo $l -> t('User Active Column'); ?></label></td><td><input type="text" id="sql_column_active" name="sql_column_active" value="<?php echo $_['sql_column_active']; ?>" /></td></tr> <tr><td><label for="sql_column_active"><?php echo $l -> t('User Active Column'); ?></label></td><td><input type="text" id="sql_column_active" name="sql_column_active" value="<?php echo $_['sql_column_active']; ?>" /></td></tr>
<tr><td><label for="sql_column_active_invert"><?php echo $l -> t('Invert Active Value'); ?></label></td><td><input type="checkbox" id="sql_column_active_invert" name="sql_column_active_invert" value="1"<?php <tr><td><label for="sql_column_active_invert"><?php echo $l -> t('Invert Active Value'); ?></label></td><td><input type="checkbox" id="sql_column_active_invert" name="sql_column_active_invert" value="1"<?php
if($_['sql_column_invert']) if($_['sql_column_active_invert'])
echo ' checked'; echo ' checked';
?> title="Invert the logic of the active column (for blocked users in the SQL DB)" /></td></tr> ?> title="Invert the logic of the active column (for blocked users in the SQL DB)" /></td></tr>
</table> </table>