Changes between Initial Version and Version 1 of Ticket #7022


Ignore:
Timestamp:
Jun 28, 2012, 11:03:01 AM (10 years ago)
Author:
viboes
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #7022 – Description

    initial v1  
    22
    33the IF condition:
     4
     5
     6{{{
    47   if(ele >= 1 || ele <= 5) {
    58      return _nth_as_str[ele];
     
    811      return _nth_as_str[0];
    912      }
     13
     14}}}
     15
    1016is not used properly. Instead of "||" in this if condition it should be "&&". Only by use of "&&" this condition makes sense.