Hi Ralf-René, Let me start by saying I swear I tried that before emailing (haha)!
Jokes aside, the problem was I did try 1,2,3... but I had an [end] after every [hour...] block, as opposed to one single [end] at the end Bottom line: [hour = 1,2,3] works - thanks so much! -Scott. ________________________________ From: Ralf-Rene Schröder <[email protected]> To: [email protected] Sent: Tuesday, June 25, 2013 7:26:05 PM Subject: Re: [TYPO3-english] Recurring Content Published by Time see in TS Ref Note: The first "=" sign directly after the word "hour" is always needed and is no operator. After that follow the operator and then the hour. Possible values are 0 to 23 (24-hours-format). The values in floating point are compared with the current hour of the server time. As you see in the section "Syntax" above, you can separate multiple conditions in one with a comma. The comma will then connect them with a logical disjunction (OR), that means the whole condition will be true, when one or more of its operands are true. try: [hour = 6,7,8] or: [hour = > 5] && [hour = < 9] -- image[FORMAT] - Ralf-René Schröder http://www.image-format.eu ... Wir geben Ihrem Image das richtige Format _______________________________________________ TYPO3-english mailing list [email protected] http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english _______________________________________________ TYPO3-english mailing list [email protected] http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english
