changed git call from https to git readonly
[atutor.git] / mods / wiki / tools / cron.d / S16nohup.php
1 <?php
2 /*
3    Ensure that execution can't be stopped from this point on, so there is
4    no security risk leaving the whole cron.d/ script collection open to
5    be activated by ANYONE.
6 */
7
8 ignore_user_abort(true);
9 set_time_limit(+500);   // 6 minutes, should be injected into run-parts loop?!
10
11 ?>