Changeset 21070


Ignore:
Timestamp:
Feb 28, 2013, 1:41:16 PM (11 years ago)
Author:
plg
Message:

bug 2852 fixed: ability to use HTML markup in album description for pwg.categories.add

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/include/functions.php

    r20805 r21070  
    12541254  if (isset($options['comment']))
    12551255  {
    1256     $insert['comment'] = strip_tags($options['comment']);
     1256    $insert['comment'] = $conf['allow_html_descriptions'] ? $options['comment'] : strip_tags($options['comment']);
    12571257  }
    12581258
  • trunk/tools/piwigo_remote.pl

    r15327 r21070  
    241241        name => $opt{define}{name},
    242242        parent => $opt{define}{parent},
     243        comment => $opt{define}{comment},
    243244    };
    244245
Note: See TracChangeset for help on using the changeset viewer.