Changeset 540057
- Timestamp:
- 05/04/2012 08:19:42 PM (14 years ago)
- Location:
- wpmathpublisher/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wpmathpublisher.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpmathpublisher/trunk/readme.txt
r535173 r540057 4 4 Requires at least: 2.5 5 5 Tested up to: 3.3.1 6 Stable tag: 0.6.4 6 Stable tag: 0.6.4.1 7 7 8 8 Plugin that allows formulars to be included in blog texts (as graphics) … … 48 48 49 49 == 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] = 51 53 * fixed activation problem 52 54 * fixed tinyMCE integration (language issue) -
wpmathpublisher/trunk/wpmathpublisher.php
r535169 r540057 55 55 v 0.6.3.1 [2010-03-23] 56 56 ! fixed things this f*cking svn gui messed with 57 ! wor ing up to Wordpress 2.8.657 ! working up to Wordpress 2.8.6 58 58 v 0.6.4 59 59 ! fixed activation problem … … 61 61 + added romanian translation (since this update not complete) by Alexander Ovsov [ http://webhostinggeeks.com/ ] 62 62 ! updated german translation 63 v 0.6.4.1 64 ! fixed replacement of > and < done by tinymce 63 65 64 66 Roadmap: … … 302 304 // replace special chars (tinymce likes to do the replacement of some letters 303 305 $searchArray = array( 304 '', '–' // dash => minus 306 '', '–', // dash => minus 307 '<', '>' // < => < // > => > 305 308 ); 306 309 $replaceArray = array( 307 '-', '-' // minus <= dash 310 '-', '-', // minus <= dash 311 '<', '>' 308 312 ); 309 313 $content = str_replace($searchArray, $replaceArray, $content);
Note: See TracChangeset
for help on using the changeset viewer.