From 4aff70ef17c5be213bf194d00fade17670dc708e Mon Sep 17 00:00:00 2001 From: james Date: Mon, 6 Feb 2006 21:34:09 +0000 Subject: [PATCH] Fix the broken sending emails -- aparently the "at" command had its syntax changed and now requires a base to add increments from (at now + 1 minute) --- admin/communication.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/communication.php b/admin/communication.php index 5e0c17d..43d77ae 100644 --- a/admin/communication.php +++ b/admin/communication.php @@ -180,7 +180,7 @@ fputs($fp,$_GET['to']."\n"); fclose($fp); - system("echo \"/usr/local/bin/php -q send_communication.php ".$_GET['reallysend']."\" | at +1 minute"); + system("echo \"/usr/local/bin/php -q send_communication.php ".$_GET['reallysend']."\" | at now +1 minute"); echo "
"; echo happy("Email Communication sending has started!");