From 396a3f067e2394b288a87fef6c07e44c90a6734b Mon Sep 17 00:00:00 2001 From: Erik Thuning <boooink@gmail.com> Date: Tue, 19 Jul 2022 15:29:58 +0200 Subject: [PATCH] Config item $reminder_sender changed to $sender --- config.php.example | 2 +- cron.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config.php.example b/config.php.example index 982e551..9a6fbb8 100644 --- a/config.php.example +++ b/config.php.example @@ -7,7 +7,7 @@ $db_pass = 'dbpassword'; $db_name = 'dbuser'; # Address to use as the sender for reminder emails -$reminder_sender = 'noreply@example.com'; +$sender = 'noreply@example.com'; # Address to send cron error messages to $error_address = 'root@example.com'; diff --git a/cron.php b/cron.php index d2170df..5e52909 100755 --- a/cron.php +++ b/cron.php @@ -7,7 +7,7 @@ require('./include/functions.php'); header('Content-Type: text/html; charset=UTF-8'); -$cron = new Cron($reminder_sender, $error_address); +$cron = new Cron($sender, $error_address); $cron->run(); ?>