Plugin Directory

Changeset 1695231

Timestamp:
07/12/2017 01:56:31 PM (7 years ago)
Author:
ebinnion
Message:

Add link to options page, fix jQuery not defined, bump version to 1.0.1

Location:
net-neutrality/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • net-neutrality/trunk/net-neutrality-options.php

    r1694628 r1695231  
    1414
    1515        <p>
    16             <?php esc_html_e( 'The FCC wants to repeal Net Neutrality rules. Without net neutrality, big cable and telecom companies will be able to divide the Internet into fast and slow lanes. What would the Internet look like without Net Neutrality? Find out by enabling this banner on your site: it shows your support for Net Neutrality by displaying a message on the bottom of your site, and "slowing down" some of your posts.', 'net-neutrality-wpcom' ); ?>
     16            <?php echo
     17                sprintf(
     18                    wp_kses(
     19                        __(
     20                            'The FCC wants to repeal Net Neutrality rules. Without net neutrality, big cable and telecom companies will be able to divide the Internet into fast and slow lanes. What would the Internet look like without Net Neutrality? Find out by enabling this banner on your site: it shows your support for Net Neutrality by displaying a message on the bottom of your site, and "slowing down" some of your posts. <a target="_blank" href="%s">Learn more about Net Neutrality</a>',
     21                            'net-neutrality-wpcom'
     22                        ),
     23                        array( 'a' => array( 'href' => array() ) )
     24                    ),
     25                    'https://en.blog.wordpress.com/2017/07/11/join-us-in-the-fight-for-net-neutrality/'
     26                );
     27            ?>
    1728        </p>
    1829
  • net-neutrality/trunk/net-neutrality.php

    r1694630 r1695231  
    55 * Description: Slow your site down to fight for net neutrality.
    66 * Author: Automattic
    7  * Version: 1.0
     7 * Version: 1.0
    88 * Author URI: http://wordpress.com
    99 * License: GPL2+
     
    113113
    114114        wp_enqueue_style( 'net-neutrality', plugins_url( 'net-neutrality.css', __FILE__ ), array(), '20140904' );
    115         wp_register_script( 'net-neutrality-js', plugins_url( 'net-neutrality.js', __FILE__ ), array(), '20140904' );
     115        wp_register_script( 'net-neutrality-js', plugins_url( 'net-neutrality.js', __FILE__ ), array(), '20140904' );
    116116        wp_localize_script( 'net-neutrality-js', 'netNeutrality', array(
    117117            'strings' => array(
  • net-neutrality/trunk/readme.txt

    r1694628 r1695231  
    22Contributors: automattic, pesieminski, Joen, ebinnion, michaelarestad
    33Tags: net neutrality
    4 Stable tag: 1.0
     4Stable tag: 1.0
    55Requires at least: 4.6
    66Tested up to: 4.8
     
    1111
    1212Enable this plugin on your WordPress site: it shows your support for real net neutrality rules by displaying a message on the bottom of your site and "slowing down" some of your posts.
     13
     14
     15
     16
     17
     18
     19
Note: See TracChangeset for help on using the changeset viewer.