diff options
author | lpsolit%gmail.com <> | 2007-04-07 06:07:11 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2007-04-07 06:07:11 +0000 |
commit | 9d15440368b31f5e2957c26c19e7449b837ac479 (patch) | |
tree | 09da389f48d1840c1734ac05b412683405977bac | |
parent | c160b0e9ecaf563a18286c29e9118fa256088ce6 (diff) | |
download | bugs-9d15440368b31f5e2957c26c19e7449b837ac479.tar bugs-9d15440368b31f5e2957c26c19e7449b837ac479.tar.gz bugs-9d15440368b31f5e2957c26c19e7449b837ac479.tar.bz2 bugs-9d15440368b31f5e2957c26c19e7449b837ac479.tar.xz bugs-9d15440368b31f5e2957c26c19e7449b837ac479.zip |
Bug 371727: One week is too long to wait for an update notification - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
-rw-r--r-- | Bugzilla/Update.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Update.pm b/Bugzilla/Update.pm index 2bfd959c9..e5d4f86f9 100644 --- a/Bugzilla/Update.pm +++ b/Bugzilla/Update.pm @@ -22,7 +22,7 @@ use Bugzilla::Constants; use constant REMOTE_FILE => 'http://updates.bugzilla.org/bugzilla-update.xml'; use constant LOCAL_FILE => "/bugzilla-update.xml"; # Relative to datadir. -use constant TIME_INTERVAL => 604800; # Default is one week, in seconds. +use constant TIME_INTERVAL => 86400; # Default is one day, in seconds. use constant TIMEOUT => 5; # Number of seconds before timeout. # Look for new releases and notify logged in administrators about them. |