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