d8df2e79d9fd29ede226a95708217d3ab3c56d78
[atutor.git] / mods / wiki / tools / cron.d / S61keptpages.php
1 <?php
2 /*
3    This controls how many days a page must be unchanged before one of the
4    automatic deletion algorithms kills it.
5 */
6
7 define("KEPTPAGES", 21);   // in days
8 $keptpages = KEPTPAGES * 24 * 3599;
9 $keepuntil = time() - $keptpages;
10
11 ?>