• Hiya,

    Love the plugin! Here’s just a small headsup for the next version:

    Find line 261:
    if ( $this->options[ 'icon' ] > 0 AND ( empty( $this->options[ 'no_icon_class' ] ) OR strpos( $attrs[ 'class' ], $this->options[ 'no_icon_class' ] ) === FALSE ) AND strpos( $attrs[ 'class' ], 'mail-icon-' ) === FALSE ) {
    Replace with:
    if ( $this->options[ 'icon' ] > 0 AND ( empty( $this->options[ 'no_icon_class' ] ) OR ( isset( $attrs[ 'class' ] ) && strpos( $attrs[ 'class' ], $this->options[ 'no_icon_class' ] ) === FALSE ) ) AND ( isset( $attrs[ 'class' ] ) && strpos( $attrs[ 'class' ], 'mail-icon-' ) === FALSE ) ) {

    Hope this help! Keep up the good work.

    Smile,
    Juliette

    http://wordpress.org/extend/plugins/wp-mailto-links/

Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Minibug fix] undefined variable notice’ is closed to new replies.