From: Frédéric Buclin Date: Sat, 20 Feb 2010 21:03:52 +0000 (+0100) Subject: Fix bustage in 012throwables.t X-Git-Tag: bugzilla-3.6rc1~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1bba0a4b3b7542e1d9d524e6a92e5e3700d840bc;p=thirdparty%2Fbugzilla.git Fix bustage in 012throwables.t --- diff --git a/Bugzilla/Update.pm b/Bugzilla/Update.pm index 4897564065..a94fd167d4 100644 --- a/Bugzilla/Update.pm +++ b/Bugzilla/Update.pm @@ -36,7 +36,7 @@ sub get_notifications { if (!-e $local_file || (time() - (stat($local_file))[9] > TIME_INTERVAL)) { unlink $local_file; # Make sure the old copy is away. if (-e $local_file) { - return { error => 'no_update', xml_file => $local_file }; + return { 'error' => 'no_update', xml_file => $local_file }; } my $error = _synchronize_data(); # If an error is returned, leave now.