mirror of
https://github.com/opnsense/plugins.git
synced 2026-05-28 04:34:15 -04:00
change $(var) > ($var)
This fixes deprecation message and the settings can be used again
This commit is contained in:
parent
f3532fc9d8
commit
e224425f0e
1 changed files with 3 additions and 3 deletions
|
|
@ -269,7 +269,7 @@ class HAProxy extends BaseModel
|
|||
return $acl_uuid;
|
||||
} else {
|
||||
// Extend existing string.
|
||||
$linkedAcls .= ",${acl_uuid}";
|
||||
$linkedAcls .= ",{$acl_uuid}";
|
||||
}
|
||||
} else {
|
||||
$linkedAcls = $acl_uuid;
|
||||
|
|
@ -309,7 +309,7 @@ class HAProxy extends BaseModel
|
|||
return $server_uuid;
|
||||
} else {
|
||||
// Extend existing string.
|
||||
$linkedServers .= ",${server_uuid}";
|
||||
$linkedServers .= ",{$server_uuid}";
|
||||
}
|
||||
} else {
|
||||
$linkedServers = $server_uuid;
|
||||
|
|
@ -349,7 +349,7 @@ class HAProxy extends BaseModel
|
|||
return $action_uuid;
|
||||
} else {
|
||||
// Extend existing string.
|
||||
$linkedActions .= ",${action_uuid}";
|
||||
$linkedActions .= ",{$action_uuid}";
|
||||
}
|
||||
} else {
|
||||
$linkedActions = $action_uuid;
|
||||
|
|
|
|||
Loading…
Reference in a new issue