diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-11-16 04:22:29 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-11-16 04:27:06 +0000 |
commit | 2560e4f2c846790efdf74f059111d01349a77ea4 (patch) | |
tree | 388a08509151823ec86697fb9e84e974efd43bb3 | |
parent | CSV: Update for newer Ruby. (diff) | |
download | rbot-bugzilla-2560e4f2c846790efdf74f059111d01349a77ea4.tar.gz rbot-bugzilla-2560e4f2c846790efdf74f059111d01349a77ea4.tar.bz2 rbot-bugzilla-2560e4f2c846790efdf74f059111d01349a77ea4.zip |
Update for newer HTMLEntities.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
-rw-r--r-- | bugzilla.rb | 2 |
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) |