I use my own get snippet to get parameters from $_GET[]:
if ($set) {
$modx->setPlaceholder($param, $_GET[$param]);
} else {
return $_GET[$param]; }
When I use [[!get? ¶m='mode' &set='1']] to set [[+mode]] variable next sample is working for non empty &mode parameter:
[[+mode:eq=``:then=`[[*content]]`]]
But works for:
[[+mode:eq=``:then=`something else`]]
Any ideas how it is possible and how to avoid this?
[[!get:eq='':then=[[*content:ellipsis='240':notags]]'? ¶m='mode']]now. Bnd should I use[[!get]]or[[get]]for the next lines? – amrok Nov 28 '11 at 12:33