Changeset 2524138
- Timestamp:
- 04/30/2021 01:36:20 PM (5 years ago)
- Location:
- wp-dlm-faq/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wp-dlm-faq.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-dlm-faq/trunk/readme.txt
r2523098 r2524138 15 15 16 16 == Changelog == 17 18 = 1.5.1 = 19 * minor updates regarding symbol 17 20 18 21 = 1.5 = … … 40 43 == Upgrade notice == 41 44 45 = 1.5.1 = 46 * minor updates regarding symbol 47 42 48 = 1.5 = 43 49 * reso;ve minor bug tp manage / slash -
wp-dlm-faq/trunk/wp-dlm-faq.php
r2523098 r2524138 4 4 * Plugin URI: https://wordpress.org/plugins/wp-dlm-faq/ 5 5 * Description: The plugin used for faq. 6 * Version: 1.5 6 * Version: 1.5.1 7 7 * Author: DLM 8 8 * Author URI: https://dlmconversion.com/wordpress-plugins/ … … 523 523 $replace = array('', '', '', '{"', '"}', '":[{', '":{', '}],"', 'answer":"', 'question":"', '","answer', '}]}}', '}]},"'); 524 524 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); 526 529 527 530 return str_replace($search, $replace, $faq);
Note: See TracChangeset
for help on using the changeset viewer.