That seems to catch it. I was caught off guard by the unexpected syntax for calling a global method.
There was also another flaw. Should be: ```
plugins.scheduler.addCronJob(‘12:20am’,‘0 20 0 ? * *’,dailyUpdate);
The original called for "no special value" for **both** day of month **and** day of week. The revision calls for **every** day of the week. The docs are "legal" although not as transparent as they could be. <img src="{SMILIES_PATH}/icon_wink.gif" alt=":wink:" title="Wink" />
Thanks. My first Cron seems to be on its way.