Merge commit 'origin/fusionax' into account
[platal.git] / bin / cron / axletter.send.php
index 6773741..1cb2b0e 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/php5 -q
 <?php
 /***************************************************************************
- *  Copyright (C) 2003-2007 Polytechnique.org                              *
+ *  Copyright (C) 2003-2009 Polytechnique.org                              *
  *  http://opensource.polytechnique.org/                                   *
  *                                                                         *
  *  This program is free software; you can redistribute it and/or modify   *
@@ -26,9 +26,10 @@ require_once("../../modules/axletter/axletter.inc.php");
 $al = AXLetter::toSend();
 if ($al) {
     echo "Envoi de la lettre \"{$al->title()}\"\n\n";
-    echo " " . date("H:i:s") . " -> début de l'envoi\n";
+    echo " " . date("H:i:s") . " -> début de l'envoi\n";
     $al->sendToAll();
     echo " " . date("H:i:s") . " -> fin de l'envoi\n";
 }
 
+// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
 ?>