diff --git a/lib/plugins/rfpdf/README b/lib/plugins/rfpdf/README index 8ecfe164e..d5a8332e5 100644 --- a/lib/plugins/rfpdf/README +++ b/lib/plugins/rfpdf/README @@ -10,10 +10,6 @@ A template plugin allowing the inclusion of ERB-enabled RFPDF template files. == == -If you are using HTML, it is recommended you install: - -gem install -r htmlentities - TCPDF Documentation located at: http://phpdocs.moodle.org/com-tecnick-tcpdf/TCPDF.html @@ -42,4 +38,4 @@ to: pdf = TCPDF.new -ENJOY! \ No newline at end of file +ENJOY! diff --git a/lib/plugins/rfpdf/init.rb b/lib/plugins/rfpdf/init.rb index efe4ebd78..9be784350 100644 --- a/lib/plugins/rfpdf/init.rb +++ b/lib/plugins/rfpdf/init.rb @@ -1,8 +1,3 @@ -begin - require('htmlentities') -rescue LoadError - # This gem is not required - just nice to have. -end require('cgi') require 'rfpdf' diff --git a/lib/plugins/rfpdf/lib/tcpdf.rb b/lib/plugins/rfpdf/lib/tcpdf.rb index 5ffc1f850..fac984cd0 100755 --- a/lib/plugins/rfpdf/lib/tcpdf.rb +++ b/lib/plugins/rfpdf/lib/tcpdf.rb @@ -94,8 +94,6 @@ class TCPDF cattr_accessor :k_path_url_cache @@k_path_url_cache = Rails.root.join('tmp') - cattr_accessor :decoder - attr_accessor :barcode attr_accessor :buffer @@ -223,12 +221,6 @@ class TCPDF #Some checks dochecks(); - begin - @@decoder = HTMLEntities.new - rescue - @@decoder = nil - end - #Initialization of properties @barcode ||= false @buffer ||= '' @@ -4344,11 +4336,7 @@ class TCPDF # @return string converted # def unhtmlentities(string) - if @@decoder.nil? CGI.unescapeHTML(string) - else - @@decoder.decode(string) - end end end # END OF CLASS