Plugin Directory

Changeset 2523098


Ignore:
Timestamp:
04/29/2021 05:08:46 AM (5 years ago)
Author:
dlmconversion
Message:

update version 1.5

Location:
wp-dlm-faq
Files:
7 added
2 edited

Legend:

Unmodified
Added
Removed
  • wp-dlm-faq/trunk/readme.txt

    r2486896 r2523098  
    1515
    1616== Changelog ==
     17
     18= 1.5 =
     19* reso;ve minor bug tp manage / slash
    1720
    1821= 1.4.1 =
     
    3740== Upgrade notice ==
    3841
     42= 1.5 =
     43* reso;ve minor bug tp manage / slash
     44
    3945= 1.4 =
    4046* add bullets to the new line in asnwers
  • wp-dlm-faq/trunk/wp-dlm-faq.php

    r2486896 r2523098  
    44 * Plugin URI: https://wordpress.org/plugins/wp-dlm-faq/
    55 * Description: The plugin used for faq.
    6  * Version: 1.4.1
     6 * Version: 1.5
    77 * Author: DLM
    88 * Author URI: https://dlmconversion.com/wordpress-plugins/
     
    522522    $search  = array('\"', "'", '"', '{', '}', ':[{', ':{', '}],', 'answer:', 'question:', ',answer', '}]"}"}', '}]"},');
    523523    $replace = array('', '', '', '{"', '"}', '":[{', '":{', '}],"', 'answer":"', 'question":"', '","answer', '}]}}', '}]},"');
     524
     525    $faq = str_replace('\u', 'u', $faq);
    524526   
    525527    return str_replace($search, $replace, $faq);
Note: See TracChangeset for help on using the changeset viewer.