Plugin Directory

Changeset 1197106


Ignore:
Timestamp:
07/11/2015 07:00:57 PM (11 years ago)
Author:
barragan
Message:

Renamed internal functions to ensure compatilibity

Location:
wp-block-referrer-spam/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-block-referrer-spam/trunk/README.txt

    r1197065 r1197106  
    44Requires at least: 3.2
    55Tested up to: 4.2.2
    6 Stable tag: 1.0
     6Stable tag: 1.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8383== Changelog ==
    8484
     85= 1.1 =
     86* Renamed internal functions to ensure compatilibity
     87
    8588= 1.0 =
    8689* Initial public release
  • wp-block-referrer-spam/trunk/includes/class-wp-block-referrer-spam.php

    r1197065 r1197106  
    6161         * @since    1.0
    6262         */
    63         const PLUGIN_VERSION    = '1.0';
     63        const PLUGIN_VERSION    = '1.1';
    6464
    6565        /**
  • wp-block-referrer-spam/trunk/wp-block-referrer-spam.php

    r1197065 r1197106  
    3434 * @return bool True if system requirements are met, false if not
    3535 */
    36 function sefp_requirements_met() {
     36function wpbrs_requirements_met() {
    3737
    3838    global $wp_version;
     
    5353 * @since    1.0
    5454 */
    55 function sefp_requirements_error() {
     55function wpbrs_requirements_error() {
    5656
    5757    global $wp_version;
     
    8888 * @since    1.0
    8989 */
    90 if ( sefp_requirements_met() ) {
     90if ( wpbrs_requirements_met() ) {
    9191
    9292    run_wp_block_referrer_spam();
     
    9494} else {
    9595
    96     add_action( 'admin_notices', 'sefp_requirements_error' );
     96    add_action( 'admin_notices', 'wpbrs_requirements_error' );
    9797    require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
    9898    deactivate_plugins( plugin_basename( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.