Plugin Directory

Changeset 540057


Ignore:
Timestamp:
05/04/2012 08:19:42 PM (14 years ago)
Author:
Astrodan
Message:

! fixed replacement of > and < done by tinymce

Location:
wpmathpublisher/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wpmathpublisher/trunk/readme.txt

    r535173 r540057  
    44Requires at least: 2.5
    55Tested up to: 3.3.1
    6 Stable tag: 0.6.4
     6Stable tag: 0.6.4.1
    77
    88Plugin that allows formulars to be included in blog texts (as graphics)
     
    4848
    4949== Changelog ==
    50 = v 0.6.4 [2012-04-19] =
     50= v 0.6.4.1 [2012-05-04] =
     51* fixed replacement of > and < done by tinymce
     52= v 0.6.4 [2012-04-19] =
    5153* fixed activation problem
    5254* fixed tinyMCE integration (language issue)
  • wpmathpublisher/trunk/wpmathpublisher.php

    r535169 r540057  
    5555    v 0.6.3.1 [2010-03-23]
    5656        ! fixed things this f*cking svn gui messed with
    57         ! woring up to Wordpress 2.8.6
     57        ! working up to Wordpress 2.8.6
    5858    v 0.6.4
    5959        ! fixed activation problem
     
    6161        + added romanian translation (since this update not complete) by Alexander Ovsov [ http://webhostinggeeks.com/ ]
    6262        ! updated german translation
     63    v 0.6.4.1
     64        ! fixed replacement of > and < done by tinymce
    6365       
    6466Roadmap:
     
    302304        // replace special chars (tinymce likes to do the replacement of some letters
    303305        $searchArray = array(
    304             '–', '–' // dash => minus
     306            '–', '–', // dash => minus
     307            '&lt;', '&gt;' // &lt; => < // &gt; => >
    305308        );
    306309        $replaceArray = array(
    307             '-', '-' // minus <= dash
     310            '-', '-', // minus <= dash
     311            '<', '>'
    308312        );
    309313        $content = str_replace($searchArray, $replaceArray, $content);
Note: See TracChangeset for help on using the changeset viewer.