Overview
Comment:Temporary disabling of old reminders code
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | dev | 1.0.0-alpha4
Files: files | file ages | folders
SHA1: eb52fecb47613432baf1aaed6f5f29fa907cb681
User & Date: bohwaz on 2020-11-02 01:49:45
Other Links: branch diff | manifest | tags
Context
2020-11-02
01:54
Fix: temporary migration table that wasn't deleted check-in: cc698cd2a5 user: bohwaz tags: dev, 1.0.0-alpha4
01:49
Temporary disabling of old reminders code check-in: eb52fecb47 user: bohwaz tags: dev, 1.0.0-alpha4
01:45
Bump version check-in: 5643f1667b user: bohwaz tags: dev, 1.0.0-alpha4
Changes

Modified src/cron.php from [8c598487d9] to [4160290bf1].

8
9
10
11
12
13
14

15
16
17
18
19
20
21


if (ENABLE_AUTOMATIC_BACKUPS && $config->get('frequence_sauvegardes') && $config->get('nombre_sauvegardes'))
{
	$s = new Sauvegarde;
	$s->auto();
}


// Exécution des rappels automatiques
$rappels = new Rappels;

if ($rappels->countAll())
{
	$rappels->sendPending();
}








>







>
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

if (ENABLE_AUTOMATIC_BACKUPS && $config->get('frequence_sauvegardes') && $config->get('nombre_sauvegardes'))
{
	$s = new Sauvegarde;
	$s->auto();
}

/*
// Exécution des rappels automatiques
$rappels = new Rappels;

if ($rappels->countAll())
{
	$rappels->sendPending();
}
*/