| @@ 127-133 (lines=7) @@ | ||
| 124 | } |
|
| 125 | ||
| 126 | // Check for top status |
|
| 127 | if ($position == 1) { |
|
| 128 | $msg .= '.top1'; |
|
| 129 | } else { |
|
| 130 | if ($position <= 5) { |
|
| 131 | $msg .= '.top5'; |
|
| 132 | } else { |
|
| 133 | $msg .= '.any'; |
|
| 134 | } |
|
| 135 | } |
|
| 136 | ||
| @@ 164-170 (lines=7) @@ | ||
| 161 | ||
| 162 | // Check which message to send. |
|
| 163 | $msg = 'secures'; |
|
| 164 | if ($position == 1) { |
|
| 165 | $msg .= '.top1'; |
|
| 166 | } else { |
|
| 167 | if ($position <= 5) { |
|
| 168 | $msg .= '.top5'; |
|
| 169 | } else { |
|
| 170 | $msg .= '.any'; |
|
| 171 | } |
|
| 172 | } |
|
| 173 | ||