diff options
-rwxr-xr-x | config/haproxy/haproxy_servers_edit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/haproxy/haproxy_servers_edit.php b/config/haproxy/haproxy_servers_edit.php index 15f2c8d9..cf53e88b 100755 --- a/config/haproxy/haproxy_servers_edit.php +++ b/config/haproxy/haproxy_servers_edit.php @@ -53,7 +53,7 @@ if (isset($id) && $a_server[$id]) { $pconfig['weight'] = $a_server[$id]['weight']; $pconfig['cookie'] = $a_server[$id]['cookie']; $pconfig['status'] = $a_server[$id]['status']; - $pconfig['advanced'] = base64deode($a_server[$id]['advanced']); + $pconfig['advanced'] = base64_decode($a_server[$id]['advanced']); } $changedesc = "Services: HAProxy: Servers: "; |