From 02917ebdc489dce4d0db41d1fe90ac683d9eae4f Mon Sep 17 00:00:00 2001 From: Jonathan Clarke Date: Sun, 30 Nov 2014 11:03:24 +0100 Subject: [PATCH] Fixes #5885: Body introduced in failsafe.cf by #5881 contains deprecated syntax --- techniques/system/common/1.0/failsafe.st | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/techniques/system/common/1.0/failsafe.st b/techniques/system/common/1.0/failsafe.st index a8b631222..268c258f2 100644 --- a/techniques/system/common/1.0/failsafe.st +++ b/techniques/system/common/1.0/failsafe.st @@ -206,9 +206,9 @@ body classes always(x) # Define a class no matter what the outcome of the promise is { - promise_repaired => { "$(x)" }; - promise_kept => { "$(x)" }; - repair_failed => { "$(x)" }; - repair_denied => { "$(x)" }; - repair_timeout => { "$(x)" }; + promise_repaired => { "${x}" }; + promise_kept => { "${x}" }; + repair_failed => { "${x}" }; + repair_denied => { "${x}" }; + repair_timeout => { "${x}" }; }