Changeset 447484
- Timestamp:
- 10/05/2011 11:34:39 AM (14 years ago)
- Location:
- explanatory-dictionary/trunk
- Files:
-
- 2 edited
-
explanatory-dictionary.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
explanatory-dictionary/trunk/explanatory-dictionary.php
r447175 r447484 4 4 Plugin URI: http://rubensargsyan.com/wordpress-plugin-explanatory-dictionary/ 5 5 Description: This plugin is used when there are words, words expressions or sentences to be explained via tooltips in the posts or pages of your wordpress blog. <a href="admin.php?page=explanatory-dictionary.php">Settings</a> 6 Version: 3.0 6 Version: 3.0.1 7 7 Author: Ruben Sargsyan 8 8 Author URI: http://rubensargsyan.com/ … … 34 34 $explanatory_dictionary_table_name = $wpdb->prefix."explanatory_dictionary"; 35 35 $explanatory_dictionary_plugin_prefix = "explanatory_dictionary_"; 36 $explanatory_dictionary_version = "3.0 ";36 $explanatory_dictionary_version = "3.0.1"; 37 37 38 38 $charset_collate = ''; … … 337 337 $explanatory_dictionary_word['word'] = str_replace($replacing_characters,$replacement_caracters,$explanatory_dictionary_word['word']); 338 338 339 $content = preg_replace('/'.$explanatory_dictionary_word['word'].'(?![^<|\[]*[>|\]]|(\[no explanation\])*(\[\/no explanation\]))/ui', '<span class="domtooltips">$0< div class="domtooltips_tooltip" style="display: none">'.htmlspecialchars_decode($explanatory_dictionary_word['explanation']).'</div></span>', $content, $limit, $count);339 $content = preg_replace('/'.$explanatory_dictionary_word['word'].'(?![^<|\[]*[>|\]]|(\[no explanation\])*(\[\/no explanation\]))/ui', '<span class="domtooltips">$0<span class="domtooltips_tooltip" style="display: none">'.htmlspecialchars_decode($explanatory_dictionary_word['explanation']).'</span></span>', $content, $limit, $count); 340 340 341 341 if($limit==-1 || ($limit-$count)>0){ -
explanatory-dictionary/trunk/readme.txt
r447186 r447484 5 5 Requires at least: 2.6 6 6 Tested up to: 3.2.1 7 Stable tag: 3.0 7 Stable tag: 3.0.1 8 8 9 9 This plugin is used when there are words, words expressions or sentences to be explained via tooltips in the posts or pages of your wordpress blog. … … 37 37 38 38 == Changelog == 39 40 = 3.0.1= 41 42 * Fixed some bugs. 39 43 40 44 = 3.0 =
Note: See TracChangeset
for help on using the changeset viewer.