| @@ 259-264 (lines=6) @@ | ||
| 256 | $j = 11 - $j; |
|
| 257 | ||
| 258 | // Return result |
|
| 259 | if (10 == $j) |
|
| 260 | return $code_base . '-X'; |
|
| 261 | else if (11 == $j) |
|
| 262 | return $code_base . '-0'; |
|
| 263 | else |
|
| 264 | return $code_base . '-' . strval($j); |
|
| 265 | } // end of func OrgCodeGen |
|
| 266 | ||
| 267 | ||
| @@ 70-76 (lines=7) @@ | ||
| 67 | $j = 11 - $j; |
|
| 68 | ||
| 69 | // Return result |
|
| 70 | if (10 == $j) { |
|
| 71 | return $codeBase . '-X'; |
|
| 72 | } elseif (11 == $j) { |
|
| 73 | return $codeBase . '-0'; |
|
| 74 | } else { |
|
| 75 | return $codeBase . '-' . strval($j); |
|
| 76 | } |
|
| 77 | } |
|
| 78 | ||
| 79 | ||