[TYPO3-dev] Not equal condition
Wolfgang Klinger
wolfgang at stufenlos.net
Fri May 18 13:42:37 CEST 2007
Hi John,
John Angel wrote:
> Any ideas for workaround?
you can always write your own function to check
conditions:
[userFunc = user_L_unequal_0()]
... do something
[global]
and define this function in either typo3conf/localconf.php
or in ext_localconf.php of one of your extensions.
function user_L_unequal_0() {
if ($_GET['L'] !== 0) {
return true;
}
return false;
}
should work..
hth, bye
Wolfgang
More information about the TYPO3-dev
mailing list