Plugin Directory

Changeset 699006


Ignore:
Timestamp:
04/17/2013 10:26:08 AM (13 years ago)
Author:
Galland.be
Message:

Update 1.0.2

Location:
gallandbe-wp-tools/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • gallandbe-wp-tools/trunk/includes/comments.php

    r696723 r699006  
    11<?php
    2 if(get_option('galland_spamfight') == '1'){
     2add_action( 'plugins_loaded', 'gal_user_info' );
     3function gal_user_info(){
     4  if ( is_user_logged_in() ) {
     5    //no spamfighter
     6    } else {
     7    gal_startspamfighter();
     8    }
     9}
     10
     11
     12function gal_startspamfighter(){
     13if((get_option('galland_spamfight') == '1') ) {
    314
    415    wp_enqueue_script('jquery');
     
    3344
    3445} //galland_spamfight activated
     46}
    3547?>
  • gallandbe-wp-tools/trunk/readme.txt

    r696775 r699006  
    44Requires at least: 3.0
    55Tested up to: 3.5.1
    6 Stable tag: 1.0.1
     6Stable tag: 1.0.2
    77
    88WordPress Tools for companies using WordPress as a CMS.
     
    3030== Changelog ==
    3131
     32= 1.0.2 =
     33* Comment SPAM fighter is no longer activated for logged in users
     34
    3235= 1.0.1 =
    3336* Minor bug fixes
Note: See TracChangeset for help on using the changeset viewer.