Plugin Directory

Changeset 447484


Ignore:
Timestamp:
10/05/2011 11:34:39 AM (14 years ago)
Author:
s_ruben
Message:
 
Location:
explanatory-dictionary/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • explanatory-dictionary/trunk/explanatory-dictionary.php

    r447175 r447484  
    44Plugin URI: http://rubensargsyan.com/wordpress-plugin-explanatory-dictionary/
    55Description: 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
     6Version: 3.0.1
    77Author: Ruben Sargsyan
    88Author URI: http://rubensargsyan.com/
     
    3434    $explanatory_dictionary_table_name = $wpdb->prefix."explanatory_dictionary";
    3535    $explanatory_dictionary_plugin_prefix = "explanatory_dictionary_";
    36     $explanatory_dictionary_version = "3.0";
     36    $explanatory_dictionary_version = "3.0.1";
    3737
    3838    $charset_collate = '';
     
    337337        $explanatory_dictionary_word['word'] = str_replace($replacing_characters,$replacement_caracters,$explanatory_dictionary_word['word']);
    338338
    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);
    340340
    341341        if($limit==-1 || ($limit-$count)>0){
  • explanatory-dictionary/trunk/readme.txt

    r447186 r447484  
    55Requires at least: 2.6
    66Tested up to: 3.2.1
    7 Stable tag: 3.0
     7Stable tag: 3.0.1
    88
    99This 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.
     
    3737
    3838== Changelog ==
     39
     40= 3.0.1=
     41
     42* Fixed some bugs.
    3943
    4044= 3.0 =
Note: See TracChangeset for help on using the changeset viewer.