Plugin Directory

Changeset 856738


Ignore:
Timestamp:
02/12/2014 11:33:38 PM (12 years ago)
Author:
ScottSmith
Message:

Tagging 1.1.5

Location:
decode-reply-tool
Files:
12 added
2 edited

Legend:

Unmodified
Added
Removed
  • decode-reply-tool/trunk/readme.txt

    r856722 r856738  
    55Requires at least: 2.7
    66Tested up to: 3.8.1
    7 Stable tag: 1.1.4
     7Stable tag: 1.1.5
    88License: GPLv3 or later
    99License URI: http://www.gnu.org/licenses/gpl-3.0-standalone.html
     
    4040== Changelog ==
    4141
     42= 1.1.5 =
     43* Reduced number of PHP calls
     44
    4245= 1.1.4 =
    4346* Reply Tool now doesn't need jQuery
  • decode-reply-tool/trunk/reply-tool-insert.php

    r761909 r856738  
    11<div class="decode-reply-tool-plugin">
    22
    3     <a href="https://twitter.com/intent/tweet?screen_name=<?php echo get_option( 'twitter-username' ); ?>&text=(about%3A%20<?php the_permalink(); ?>) " class="twitterreply replylink left" target="_blank" data-related="<?php echo get_option( 'twitter-username' ); ?>"><?php _e( 'With Twitter', 'decode-reply-tool' ); ?></a>
     3    <a href="<?php echo esc_url( 'https://twitter.com/intent/tweet?screen_name=' . get_option( 'twitter-username' ) . '&text=(about%3A%20' ); echo the_permalink() . ')'; ?>" class="twitterreply replylink left" target="_blank" data-related="<?php echo get_option( 'twitter-username' ); ?>"><?php _e( 'With Twitter', 'decode-reply-tool' ); ?></a>
    44
    55    <div class="replytrigger"><?php _e( 'Reply', 'decode-reply-tool' ); ?></div>
    66
    7     <a href="https://alpha.app.net/intent/post?text=@<?php echo get_option( 'adn-username' ); ?> (about%3A%20<?php the_permalink(); ?>) " class="adnreply replylink right" target="_blank"><?php _e( 'With ADN', 'decode-reply-tool' ); ?></a>
     7    <a href="<?php echo esc_url( 'https://alpha.app.net/intent/post?text=@' . get_option( 'adn-username' ) . '&nbsp;(about%3A%20' ); echo the_permalink() . ')'; ?>" class="adnreply replylink right" target="_blank"><?php _e( 'With ADN', 'decode-reply-tool' ); ?></a>
    88
    99</div>
Note: See TracChangeset for help on using the changeset viewer.