Decode " in html_decode() - gophercgis - Collection of gopher CGI/DCGI for geomyidae
 (HTM) hg clone https://bitbucket.org/iamleot/gophercgis
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) changeset 1473cee19a6159cefe43415f44deb54022ce5e25
 (DIR) parent 3f4a0c3de052225cd4727727e8a47a5d4a28c6af
 (HTM) Author: Leonardo Taccari <iamleot@gmail.com>
       Date:   Fri, 21 Sep 2018 13:22:47 
       
       Decode &quot; in html_decode()
       
       Diffstat:
        rep/rep.dcgi |  1 +
        1 files changed, 1 insertions(+), 0 deletions(-)
       ---
       diff -r 3f4a0c3de052 -r 1473cee19a61 rep/rep.dcgi
       --- a/rep/rep.dcgi      Wed Sep 19 17:48:05 2018 +0200
       +++ b/rep/rep.dcgi      Fri Sep 21 13:22:47 2018 +0200
       @@ -36,6 +36,7 @@
               gsub(/&ldquo;/, "\"", s);
               gsub(/&rdquo;/, "\"", s);
               gsub(/&rsquo;/, "\047", s);
       +       gsub(/&quot;/, "\"", s);
               gsub(/&agrave;/, "à", s);
               gsub(/&eacute;/, "é", s);
               gsub(/&egrave;/, "è", s);