1. Summary
  2. Files
  3. Support
  4. Report Spam
  5. Create account
  6. Log in

Changeset 5309

Show
Ignore:
Timestamp:
09/18/10 11:18:44 (3 years ago)
Author:
trabis
Message:

ID: 3033138 XoopsLists::getHtmlList method needs updating/zyspec

Location:
XoopsCore/branches/tasks/2.5.0-formuss-trabis
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • XoopsCore/branches/tasks/2.5.0-formuss-trabis/docs/changelog.250.txt

    r5308 r5309  
    1212 - ID: 2153663 (Preview function/anderssk) (trabis) 
    1313 - ID: 2929230 (DHTML AJAX can tackle server/ghia) (trabis) 
    14   
     14 - ID: 3033138 (XoopsLists::getHtmlList method needs updating/zyspec) (trabis) 
     15 
    1516Design Fixes: 
    1617 - correction of image links and cleaning css code in legacy admin gui (kris_fr) 
  • XoopsCore/branches/tasks/2.5.0-formuss-trabis/htdocs/class/xoopslists.php

    r4941 r5309  
    524524        { 
    525525            $html_list = array( 
    526                 'a' => '<a>' , 
    527                 'abbr' => '<abbr>' , 
    528                 'acronym' => '<acronym>' , 
    529                 'address' => '<address>' , 
    530                 'b' => '<b>' , 
    531                 'bdo' => '<bdo>' , 
    532                 'big' => '<big>' , 
    533                 'blockquote' => '<blockquote>' , 
    534                 'caption' => '<caption>' , 
    535                 'cite' => '<cite>' , 
    536                 'code' => '<code>' , 
    537                 'col' => '<col>' , 
    538                 'colgroup' => '<colgroup>' , 
    539                 'dd' => '<dd>' , 
    540                 'del' => '<del>' , 
    541                 'dfn' => '<dfn>' , 
    542                 'div' => '<div>' , 
    543                 'dl' => '<dl>' , 
    544                 'dt' => '<dt>' , 
    545                 'em' => '<em>' , 
    546                 'font' => '<font>' , 
    547                 'h1' => '<h1>' , 
    548                 'h2' => '<h2>' , 
    549                 'h3' => '<h3>' , 
    550                 'h4' => '<h4>' , 
    551                 'h5' => '<h5>' , 
    552                 'h6' => '<h6>' , 
    553                 'hr' => '<hr>' , 
    554                 'i' => '<i>' , 
    555                 'img' => '<img>' , 
    556                 'ins' => '<ins>' , 
    557                 'kbd' => '<kbd>' , 
    558                 'li' => '<li>' , 
    559                 'map' => '<map>' , 
    560                 'object' => '<object>' , 
    561                 'ol' => '<ol>' , 
    562                 'samp' => '<samp>' , 
    563                 'small' => '<small>' , 
    564                 'strong' => '<strong>' , 
    565                 'sub' => '<sub>' , 
    566                 'sup' => '<sup>' , 
    567                 'table' => '<table>' , 
    568                 'tbody' => '<tbody>' , 
    569                 'td' => '<td>' , 
    570                 'tfoot' => '<tfoot>' , 
    571                 'th' => '<th>' , 
    572                 'thead' => '<thead>' , 
    573                 'tr' => '<tr>' , 
    574                 'tt' => '<tt>' , 
    575                 'ul' => '<ul>' , 
     526                'a' => '<a>', 
     527                'abbr' => '<abbr>', 
     528                'acronym' => '<acronym>', 
     529                'address' => '<address>', 
     530                'b' => '<b>', 
     531                'bdo' => '<bdo>', 
     532                'big' => '<big>', 
     533                'blockquote' => '<blockquote>', 
     534                'br' => '<br>', 
     535                'caption' => '<caption>', 
     536                'cite' => '<cite>', 
     537                'code' => '<code>', 
     538                'col' => '<col>', 
     539                'colgroup' => '<colgroup>', 
     540                'dd' => '<dd>', 
     541                'del' => '<del>', 
     542                'dfn' => '<dfn>', 
     543                'div' => '<div>', 
     544                'dl' => '<dl>', 
     545                'dt' => '<dt>', 
     546                'em' => '<em>', 
     547                'font' => '<font>', 
     548                'h1' => '<h1>', 
     549                'h2' => '<h2>', 
     550                'h3' => '<h3>', 
     551                'h4' => '<h4>', 
     552                'h5' => '<h5>', 
     553                'h6' => '<h6>', 
     554                'hr' => '<hr>', 
     555                'i' => '<i>', 
     556                'img' => '<img>', 
     557                'ins' => '<ins>', 
     558                'kbd' => '<kbd>', 
     559                'li' => '<li>', 
     560                'map' => '<map>', 
     561                'object' => '<object>', 
     562                'ol' => '<ol>', 
     563                'p' => '<p>', 
     564                'pre' => '<pre>', 
     565                's' => '<s>', 
     566                'samp' => '<samp>', 
     567                'small' => '<small>', 
     568                'span' => '<span>', 
     569                'strike' => '<strike>', 
     570                'strong' => '<strong>', 
     571                'sub' => '<sub>', 
     572                'sup' => '<sup>', 
     573                'table' => '<table>', 
     574                'tbody' => '<tbody>', 
     575                'td' => '<td>', 
     576                'tfoot' => '<tfoot>', 
     577                'th' => '<th>', 
     578                'thead' => '<thead>', 
     579                'tr' => '<tr>', 
     580                'tt' => '<tt>', 
     581                'u' => '<u>', 
     582                'ul' => '<ul>', 
    576583                'var' => '<var>'); 
    577584            asort($html_list);