aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bugzilla.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/bugzilla.rb b/bugzilla.rb
index 97743cc..d9af38f 100644
--- a/bugzilla.rb
+++ b/bugzilla.rb
@@ -21,7 +21,7 @@ require 'htmlentities'
module BugzillaStringExtensions
def decode_entities
- return HTMLEntities.decode_entities(self)
+ return HTMLEntities.new().decode(self)
end
end
String.send(:include, BugzillaStringExtensions)