Changeset 1112258
- Timestamp:
- 03/13/2015 09:31:30 PM (11 years ago)
- Location:
- mm-email2image/trunk
- Files:
-
- 3 edited
-
e2i.php (modified) (1 diff)
-
mm-email2image.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mm-email2image/trunk/e2i.php
r103839 r1112258 75 75 $string = base64_decode($string64url); 76 76 77 $base64url = strtr($plainText, '-_,', '+/=');78 $base64 = base64_decode($base64url);79 80 77 for($i=0; $i<strlen($string); $i++) { 81 78 $char = substr($string, $i, 1); -
mm-email2image/trunk/mm-email2image.php
r609806 r1112258 2 2 /* 3 3 Plugin Name: MM-email2image 4 Plugin URI: http://www. mmilan.com/mm-email2image4 Plugin URI: http://www.svetnauke.org/mm-email2image 5 5 Description: Mask an e-mail address (or any part of a text) and convert it to image 6 6 Author: Milan Milosevic 7 Author URI: http://www. mmilan.com/8 Version: 0.2. 27 Author URI: http://www.svetnauke.org/ 8 Version: 0.2.5 9 9 License: GPL v3 - http://www.gnu.org/licenses/ 10 10 … … 29 29 function mm_email2image($attr, $content) { 30 30 31 $type = $attr['type'];32 $color = $attr['color'];33 $size = $attr['size'];34 $bgcolor = $attr['bgcolor'];35 $trans = $attr['trans'];31 if (isset($attr['type'])) $type = $attr['type']; 32 if (isset($attr['color'])) $color = $attr['color']; 33 if (isset($attr['size'])) $size = $attr['size']; 34 if (isset($attr['bgcolor'])) $bgcolor = $attr['bgcolor']; 35 if (isset($attr['trans'])) $trans = $attr['trans']; 36 36 37 37 $pluginURL = get_bloginfo('url')."/wp-content/plugins/mm-email2image/"; -
mm-email2image/trunk/readme.txt
r609806 r1112258 4 4 Tags: email, spam, protect, image, link, screen, scrape 5 5 Requires at least: 2.6 6 Tested up to: 3.4.27 Stable tag: 0.2. 26 Tested up to: 4.1.1 7 Stable tag: 0.2.5 8 8 9 9 Add new shortcode which can be used to convert email or any part of text to image … … 27 27 Changelog: 28 28 29 2015-03-13: version 0.2.5 30 Bugfix & compatibility: Wordpress 4.1.1 31 29 32 2012-10-09: version 0.2.2 30 33 Bugfix & compatibility: Wordpress 3.4.2
Note: See TracChangeset
for help on using the changeset viewer.