From: lpsolit%gmail.com <> Date: Sat, 7 Apr 2007 06:08:35 +0000 (+0000) Subject: Bug 371727: One week is too long to wait for an update notification - Patch by FrÃ... X-Git-Tag: bugzilla-3.0~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f3051e3fd99bedeb39402f6e2f804b2cb4e33115;p=thirdparty%2Fbugzilla.git Bug 371727: One week is too long to wait for an update notification - Patch by Frédéric Buclin r/a=mkanat --- diff --git a/Bugzilla/Update.pm b/Bugzilla/Update.pm index 2bfd959c92..e5d4f86f90 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.