Plugin Directory

Changeset 164379


Ignore:
Timestamp:
10/17/2009 06:05:14 PM (16 years ago)
Author:
Astrodan
Message:
 
Location:
wpmathpublisher/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wpmathpublisher/trunk/readme.txt

    r164202 r164379  
    44Requires at least: 2.5
    55Tested up to: 2.8.4
    6 Stable tag: 0.6.1
     6Stable tag: 0.6.2
    77
    88Plugin that allows formulars to be included in blog texts (as graphics)
     
    4747== Changelog ==
    4848
     49= v 0.6.2 [2009-10-17]
     50* updated german translation
     51* fixed display of – instead a minus, tinymce likes to change a minus to a dash
    4952= v 0.6.1 [2009-10-17] =
    5053* added slider to set transparency [Carpe Slider](http://carpe.ambiprospect.com/slider/ "DHTML Slider") (v1.5.1)
  • wpmathpublisher/trunk/wpmathpublisher.php

    r164202 r164379  
    77Author URI: http://kraeuterbruederchen.de
    88Text Domain: wpmathpublisher
    9 Version: 0.6.1
     9Version: 0.6.2
    1010
    1111Copyright:
     
    4848        + added slider to set transparency
    4949        + added credits for all the people i got the scripts from
     50    v 0.6.2 [2009-10-17]
    5051        ! updated german translation
     52        ! fixed display of – instead a minus, tinymce likes to change a minus to a dash
    5153       
    5254Roadmap:
     
    243245            return $output;
    244246        }
     247        // replace special chars (tinymce likes to do the replacement of some letters
     248        $searchArray = array(
     249            '–', '–' // dash => minus
     250        );
     251        $replaceArray = array(
     252            '-', '-' // minus <= dash
     253        );
     254        $content = str_replace($searchArray, $replaceArray, $content);
     255       
    245256        // read size information
    246257        $size = (!isset($attributes['size']) || empty($attributes['size'])) ? $this->size : $attributes['size'];
Note: See TracChangeset for help on using the changeset viewer.