Overview
Comment:Fix cron call self-hosting
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | stable
Files: files | file ages | folders
SHA3-256: ad3a526c37f9e7fa5d6475a9ff9ede2c713ce6c3d3559421acdfb0fe1bf6b2d1
User & Date: bohwaz on 2022-06-26 01:03:01
Other Links: manifest | tags
Context
2022-06-27
22:29
Add user name to mailing recipients export check-in: 9be5f8f930 user: bohwaz tags: trunk, stable
2022-06-26
01:03
Fix cron call self-hosting check-in: ad3a526c37 user: bohwaz tags: trunk, stable
2022-06-25
20:52
Do not restrict email addresses check-in: 08518751e2 user: bohwaz tags: trunk, stable
Changes

Modified src/scripts/cron.php from [72a40d7bb2] to [11940cccfa].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

namespace Garradin;

use Garradin\Services\Reminders;

if (PHP_SAPI != 'cli') {
	die("Wrong call");
}

require_once __DIR__ . '/../include/init.php';

// Exécution des tâches automatiques







|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

namespace Garradin;

use Garradin\Services\Reminders;

if (PHP_SAPI != 'cli' && !defined('\Garradin\ROOT')) {
	die("Wrong call");
}

require_once __DIR__ . '/../include/init.php';

// Exécution des tâches automatiques