From 2560e4f2c846790efdf74f059111d01349a77ea4 Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Mon, 16 Nov 2015 04:22:29 +0000 Subject: Update for newer HTMLEntities. Signed-off-by: Robin H. Johnson --- bugzilla.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3-65-gdbad