summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Update.pm
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2010-02-20 22:02:21 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2010-02-20 22:02:21 +0100
commitea17a5ebc0448e912fb59e03a6d3052a6159edfc (patch)
tree6ceda0a0a253ba99fd8b7f3d9f21d89da1dfd7b5 /Bugzilla/Update.pm
parent4983a7bcf0dccc254376462ce3bd00df05306563 (diff)
downloadbugzilla-ea17a5ebc0448e912fb59e03a6d3052a6159edfc.tar.gz
bugzilla-ea17a5ebc0448e912fb59e03a6d3052a6159edfc.tar.xz
fix bustage in 012throwables.t
Diffstat (limited to 'Bugzilla/Update.pm')
-rw-r--r--Bugzilla/Update.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Update.pm b/Bugzilla/Update.pm
index 489756406..a94fd167d 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.