From: Roland Häder Date: Fri, 28 Dec 2012 23:14:25 +0000 (+0000) Subject: Fix: Use {%server,foo_bar%} not {%server=foo_bar%} X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=0888d861905930547fbc88398afbd9a909af7fb1;p=mailer.git Fix: Use {%server,foo_bar%} not {%server=foo_bar%} --- diff --git a/inc/expression-functions.php b/inc/expression-functions.php index 743e4a450b..6c586deb53 100644 --- a/inc/expression-functions.php +++ b/inc/expression-functions.php @@ -467,7 +467,7 @@ function doExpressionForm ($data) { $data['__form_id'] = substr($value, 6); } elseif (substr($value, 0, 6) == 'server') { // {%server,foo%} found - $data['__server'] = '{%server=' . substr($value, 6) . '%}'; + $data['__server'] = '{%server,' . substr($value, 6) . '%}'; } } // END - foreach