Files
freeipa/install/ui
Petr Vobornik 1ffbec9942 Removed usage of bitwise assignment operators in logical operations
JavaScript &= and |= are bitwise operators. They are shortened version of:
 foo = foo & bar
 foo = foo | bar

In some places they were used as shortened version of logical operation and assignment.
 foo = foo && bar

It lead to type conversion to Number which is wrong (0 !== false).

This patch replaces such occurances with full version of logical operation and asignment.

https://fedorahosted.org/freeipa/ticket/2040
2011-12-05 16:02:11 +00:00
..
2011-10-27 14:05:12 +00:00
2011-12-05 16:01:33 +00:00
2011-11-14 16:47:10 -05:00
2011-11-14 16:47:10 -05:00
2011-11-11 14:44:25 +00:00
2011-02-03 15:04:23 -05:00
2011-12-05 16:01:44 +00:00
2011-10-27 14:05:12 +00:00
2011-10-27 14:05:12 +00:00
2011-01-20 14:12:47 +00:00
2011-01-20 14:12:47 +00:00
2011-01-20 14:12:47 +00:00
2011-10-18 16:19:06 -02:00
2011-12-05 16:01:44 +00:00
2011-11-11 14:44:25 +00:00
2011-12-05 16:01:44 +00:00
2011-11-14 16:47:10 -05:00