Removes trailing spaces.
[platal.git] / bin / cron / notifs.birthday.php
index f783d78..7c50fd1 100755 (executable)
@@ -20,7 +20,7 @@
  *  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                *
  ***************************************************************************/
 
-require('./connect.db.inc.php');
+require './connect.db.inc.php';
 
 $it = 0;
 do {
@@ -30,7 +30,7 @@ do {
                            AND deathdate IS NULL');
     ++$it;
     $affected = XDB::affectedRows();
-    echo "Iteration $it => $affected changes\n";
+    //echo "Iteration $it => $affected changes\n";
 } while ($affected > 0);
 
 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: