Changes between Initial Version and Version 1 of Ticket #7022
- Timestamp:
- Jun 28, 2012, 11:03:01 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #7022 – Description
initial v1 2 2 3 3 the IF condition: 4 5 6 {{{ 4 7 if(ele >= 1 || ele <= 5) { 5 8 return _nth_as_str[ele]; … … 8 11 return _nth_as_str[0]; 9 12 } 13 14 }}} 15 10 16 is not used properly. Instead of "||" in this if condition it should be "&&". Only by use of "&&" this condition makes sense.