]> git.mxchange.org Git - mailer.git/commitdiff
Fix: Use {%server,foo_bar%} not {%server=foo_bar%}
authorRoland Häder <roland@mxchange.org>
Fri, 28 Dec 2012 23:14:25 +0000 (23:14 +0000)
committerRoland Häder <roland@mxchange.org>
Fri, 28 Dec 2012 23:14:25 +0000 (23:14 +0000)
inc/expression-functions.php

index 743e4a450b2096d1a2626491b2f12eb552b62ba9..6c586deb53b1db9dcda2e6acad8af47420d78b5e 100644 (file)
@@ -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