]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fix bustage in 012throwables.t
authorFrédéric Buclin <LpSolit@gmail.com>
Sat, 20 Feb 2010 21:03:52 +0000 (22:03 +0100)
committerFrédéric Buclin <LpSolit@gmail.com>
Sat, 20 Feb 2010 21:03:52 +0000 (22:03 +0100)
Bugzilla/Update.pm

index 4897564065d6c98ba5e164f15685d656e8631566..a94fd167d427b148a406a4645e73eaff7b142e8c 100644 (file)
@@ -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.