Ignore:
Timestamp:
Feb 17, 2006, 3:41:57 AM (18 years ago)
Author:
rvelices
Message:

fix: remote site decodes html entities from xml and addslashes

fix: picture displays "image rank/total" images even for non numeric categories

fix: category comment not transformed with nl2br if allow_html_descriptions and
comment already looks like html

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/site_reader_remote.php

    r1029 r1046  
    153153    if (getAttribute($xml_element, $att) != '')
    154154    {
    155       $data[$att] = getAttribute($xml_element, $att);
     155      $val = html_entity_decode( getAttribute($xml_element, $att) );
     156      $data[$att] = addslashes($val);
    156157    }
    157158  }
Note: See TracChangeset for help on using the changeset viewer.