partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit 7777aa810666e1281604f334ba934ac3e40895fa
parent c94615b083b1ede7496472517f4abb434bbe7e67
Author: Felicitus <felicitus@felicitus.org>
Date:   Thu,  5 Jan 2012 17:13:40 +0100

Fix cronjob entry, hour "24" is not valid.

Diffstat:
Msrc/setup/js/SetupWizard.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/setup/js/SetupWizard.js b/src/setup/js/SetupWizard.js @@ -87,7 +87,7 @@ Ext.define('PartKeeprSetup.SetupWizard', { bodyStyle: 'background:none;', autoScroll: true, html: "Please set up the following cronjobs:<br/><br/><code>"+ - "0 0,24 * * * /usr/bin/php &lt;path-to-partkeepr&gt;/CreateStatisticSnapshot.php<br/>"+ + "0 0,12 * * * /usr/bin/php &lt;path-to-partkeepr&gt;/CreateStatisticSnapshot.php<br/>"+ "0 0,6,12,18 * * * /usr/bin/php &lt;path-to-partkeepr&gt;/UpdatePartCacheData.php<br/>"+ "0 0 */2 * * /usr/bin/php &lt;path-to-partkeepr&gt;/CheckForUpdates.php<br/>"+ "0 0 */2 * * /usr/bin/php &lt;path-to-partkeepr&gt;/UpdateTipsOfTheDay.php<br/>"+