Plugin Directory

Changeset 1112258


Ignore:
Timestamp:
03/13/2015 09:31:30 PM (11 years ago)
Author:
mmilan81
Message:

New version

Location:
mm-email2image/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • mm-email2image/trunk/e2i.php

    r103839 r1112258  
    7575    $string = base64_decode($string64url);
    7676
    77     $base64url = strtr($plainText, '-_,', '+/=');
    78     $base64 = base64_decode($base64url);
    79 
    8077    for($i=0; $i<strlen($string); $i++) {
    8178        $char = substr($string, $i, 1);
  • mm-email2image/trunk/mm-email2image.php

    r609806 r1112258  
    22/*
    33Plugin Name: MM-email2image
    4 Plugin URI: http://www.mmilan.com/mm-email2image
     4Plugin URI: http://www.svetnauke.org/mm-email2image
    55Description: Mask an e-mail address (or any part of a text) and convert it to image
    66Author: Milan Milosevic
    7 Author URI: http://www.mmilan.com/
    8 Version: 0.2.2
     7Author URI: http://www.svetnauke.org/
     8Version: 0.2.5
    99License: GPL v3 - http://www.gnu.org/licenses/
    1010
     
    2929function mm_email2image($attr, $content) {
    3030
    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'];
    3636   
    3737    $pluginURL = get_bloginfo('url')."/wp-content/plugins/mm-email2image/";
  • mm-email2image/trunk/readme.txt

    r609806 r1112258  
    44Tags: email, spam, protect, image, link, screen, scrape
    55Requires at least: 2.6
    6 Tested up to: 3.4.2
    7 Stable tag: 0.2.2
     6Tested up to: 4.1.1
     7Stable tag: 0.2.5
    88
    99Add new shortcode which can be used to convert email or any part of text to image
     
    2727Changelog:
    2828
     29    2015-03-13: version 0.2.5
     30        Bugfix & compatibility: Wordpress 4.1.1
     31   
    2932    2012-10-09: version 0.2.2
    3033        Bugfix & compatibility: Wordpress 3.4.2
Note: See TracChangeset for help on using the changeset viewer.