diff options
author | k-paulius <k.dash.paulius@gmail.com> | 2015-03-08 18:17:26 -0500 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2015-03-09 06:55:20 -0300 |
commit | 478188c221241eac1b3ae27414a11e61fdb38c46 (patch) | |
tree | 8f48813d951e31fc3e8fd5a5a10c66f80a001fb2 /usr | |
parent | f973985c845d50f567242f10a1b5873d6b39f3fc (diff) | |
download | pfsense-478188c221241eac1b3ae27414a11e61fdb38c46.zip pfsense-478188c221241eac1b3ae27414a11e61fdb38c46.tar.gz |
Add missing opening bracket
Diffstat (limited to 'usr')
-rw-r--r-- | usr/local/www/carp_status.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/carp_status.php b/usr/local/www/carp_status.php index 25b31aa..05af0b9 100644 --- a/usr/local/www/carp_status.php +++ b/usr/local/www/carp_status.php @@ -216,7 +216,7 @@ include("head.inc"); $icon = "<img {$align} src=\"/themes/".$g['theme']."/images/icons/icon_pass_d.gif\" alt=\"backup\" />"; } else if($status == "INIT") { $icon = "<img {$align} src=\"/themes/".$g['theme']."/images/icons/icon_log.gif\" alt=\"init\" />"; - } else + } else { $icon = ""; } } |