Revision 0b9cadb4
Added by Jim Pingle over 9 years ago
src/usr/local/www/status_carp.php | ||
---|---|---|
222 | 222 |
$status = "DISABLED"; |
223 | 223 |
} else { |
224 | 224 |
if ($status == "MASTER") { |
225 |
$icon = 'check-circle';
|
|
225 |
$icon = 'play-circle';
|
|
226 | 226 |
} else if ($status == "BACKUP") { |
227 |
$icon = 'minus-circle';
|
|
227 |
$icon = 'pause-circle';
|
|
228 | 228 |
} else if ($status == "INIT") { |
229 | 229 |
$icon = 'question-circle'; |
230 | 230 |
} |
Also available in: Unified diff
Upon further review, use a more clear and related set of icons for CARP status, play-circle (master) and pause-circle (backup). Ticket #5965