| @@ 145-151 (lines=7) @@ | ||
| 142 | } |
|
| 143 | ||
| 144 | // Check for top status |
|
| 145 | if ($position == 1) { |
|
| 146 | $msg .= '.top1'; |
|
| 147 | } else { |
|
| 148 | if ($position <= 5) { |
|
| 149 | $msg .= '.top5'; |
|
| 150 | } else { |
|
| 151 | $msg .= '.any'; |
|
| 152 | } |
|
| 153 | } |
|
| 154 | ||
| @@ 189-195 (lines=7) @@ | ||
| 186 | ||
| 187 | // Check which message to send. |
|
| 188 | $msg = 'secures'; |
|
| 189 | if ($position == 1) { |
|
| 190 | $msg .= '.top1'; |
|
| 191 | } else { |
|
| 192 | if ($position <= 5) { |
|
| 193 | $msg .= '.top5'; |
|
| 194 | } else { |
|
| 195 | $msg .= '.any'; |
|
| 196 | } |
|
| 197 | } |
|
| 198 | ||