Sync docs from 1.0.x to gh-pages

This commit is contained in:
buildmaster
2017-02-23 10:25:41 +00:00
parent 965d7e2a55
commit 7677527aee

View File

@@ -6769,6 +6769,21 @@ in the configuration. Example:</p>
}</code></pre>
</div>
</div>
<div class="admonitionblock important">
<table>
<tr>
<td class="icon">
<div class="title">Important</div>
</td>
<td class="content">
You can&#8217;t use both a String and <code>execute</code> to perform concatenation. E.g. calling
<code>header('Authorization', 'Bearer ' + execute('authToken()'))</code> will lead to improper results.
To make this work just call <code>header('Authorization', execute('authToken()'))</code> and ensure that
the <code>authToken()</code> method returns everything that you need.
</td>
</tr>
</table>
</div>
</div>
</div>
<div class="sect4">