Changeset 164379
- Timestamp:
- 10/17/2009 06:05:14 PM (16 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
r164202 r164379 4 4 Requires at least: 2.5 5 5 Tested up to: 2.8.4 6 Stable tag: 0.6. 16 Stable tag: 0.6.2 7 7 8 8 Plugin that allows formulars to be included in blog texts (as graphics) … … 47 47 == Changelog == 48 48 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 49 52 = v 0.6.1 [2009-10-17] = 50 53 * added slider to set transparency [Carpe Slider](http://carpe.ambiprospect.com/slider/ "DHTML Slider") (v1.5.1) -
wpmathpublisher/trunk/wpmathpublisher.php
r164202 r164379 7 7 Author URI: http://kraeuterbruederchen.de 8 8 Text Domain: wpmathpublisher 9 Version: 0.6. 19 Version: 0.6.2 10 10 11 11 Copyright: … … 48 48 + added slider to set transparency 49 49 + added credits for all the people i got the scripts from 50 v 0.6.2 [2009-10-17] 50 51 ! updated german translation 52 ! fixed display of – instead a minus, tinymce likes to change a minus to a dash 51 53 52 54 Roadmap: … … 243 245 return $output; 244 246 } 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 245 256 // read size information 246 257 $size = (!isset($attributes['size']) || empty($attributes['size'])) ? $this->size : $attributes['size'];
Note: See TracChangeset
for help on using the changeset viewer.