Plugin Directory

Changeset 2524138


Ignore:
Timestamp:
04/30/2021 01:36:20 PM (5 years ago)
Author:
dlmconversion
Message:

update 1.5.1 version minor symbol updates

Location:
wp-dlm-faq/trunk
Files:
2 edited

Legend:

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

    r2523098 r2524138  
    1515
    1616== Changelog ==
     17
     18= 1.5.1 =
     19* minor updates regarding symbol
    1720
    1821= 1.5 =
     
    4043== Upgrade notice ==
    4144
     45= 1.5.1 =
     46* minor updates regarding symbol
     47
    4248= 1.5 =
    4349* reso;ve minor bug tp manage / slash
  • wp-dlm-faq/trunk/wp-dlm-faq.php

    r2523098 r2524138  
    44 * Plugin URI: https://wordpress.org/plugins/wp-dlm-faq/
    55 * Description: The plugin used for faq.
    6  * Version: 1.5
     6 * Version: 1.5.1
    77 * Author: DLM
    88 * Author URI: https://dlmconversion.com/wordpress-plugins/
     
    523523    $replace = array('', '', '', '{"', '"}', '":[{', '":{', '}],"', 'answer":"', 'question":"', '","answer', '}]}}', '}]},"');
    524524
    525     $faq = str_replace('\u', 'u', $faq);
     525    $faq = str_replace('u2122', '\u2122', $faq);
     526    $faq = str_replace('u201c', '\u201c', $faq);
     527    $faq = str_replace('u201d', '\u201d', $faq);
     528    $faq = str_replace("u00ae", "\u00ae", $faq);
    526529   
    527530    return str_replace($search, $replace, $faq);
Note: See TracChangeset for help on using the changeset viewer.