Re: [pmwiki-users] if exists conditional markup problem

2015-04-01 Thread John Rankin
It may be possible to intercept the if code and find out what condition pmwiki is evaluating, which should give information about what is happening. Try this in local/config.php: $CondTextReplacement = MyTempRepl(\$pagename, \$m[0], \$m[1]); function MyTempRepl($pagename, $text, $code='') {

Re: [pmwiki-users] if exists conditional markup problem

2015-04-01 Thread Dominique Faure
Hi, This comes simply because the space between ftime and %Y%m is seen as a separator when evaluation the condition. You should try enclosing your expression with quotes: (:if exists ’Profile-Data.{Members/Hosts$:{(ftime %Y%m)}}’ :) -D- On Wed, Apr 1, 2015 at 1:07 PM, Criss Ittermann