Re: checking for sorted pages
"Crisp" <[email protected]>
| Newsgroups | gmane.comp.cms.xaraya.user |
|---|---|
| Organization | Xaraya |
| Message-ID | <[email protected]> |
Tim Stalker <[email protected]> wrote in message <mailman.3822.1208535230.5462.xaraya_user-gn8pmO+6nszQT0dZR+AlfA@public.gmane.org> > In the last condition do you mean to use code > <xar:if condition=3D"nofollow eq '1'"> > I'll give this a shot. This looks good, and thanks. > --=20 > Tim Stalker > <a href=3D"http://www.word-builder.com">test</a> Hi Tim, the xar:if condition just needs to eval to true, with php that can be either 1, or true so in the statement any of the following would work <xar:if condition="$nofollow"> or <xar:if condition="$nofollow eq true"> or your alternative <xar:if condition="$nofollow eq '1'"> I just took the shortest route ;@) Chris