Plugin Directory

Changeset 911122


Ignore:
Timestamp:
05/09/2014 02:58:33 PM (12 years ago)
Author:
petervanderdoes
Message:

Release v3.6.7

Location:
avh-first-defense-against-spam/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • avh-first-defense-against-spam/trunk/avh-fdas.php

    r842210 r911122  
    44 * URI: http://blog.avirtualhome.com/wordpress-plugins
    55 * Description: This plugin gives you the ability to block spammers before content is served.
    6  * Version: 3.6.5
     6 * Version: 3.6.7
    77 * Author: Peter van der Does
    88 * Author URI: http://blog.avirtualhome.com/
  • avh-first-defense-against-spam/trunk/class/avh-fdas.admin.php

    r842210 r911122  
    16211621        // Setup the DB Tables
    16221622        $charset_collate = '';
    1623         if (version_compare(mysql_get_server_info(), '4.1.0', '>=')) {
     1623        if (version_compare($wpdb->db_version(), '4.1.0', '>=')) {
    16241624            if (! empty($wpdb->charset))
    16251625                $charset_collate = 'DEFAULT CHARACTER SET ' . $wpdb->charset;
  • avh-first-defense-against-spam/trunk/class/avh-fdas.define.php

    r842210 r911122  
    99     * General Constants
    1010     */
    11     const PLUGIN_VERSION = '3.6.5';
     11    const PLUGIN_VERSION = '3.6.7';
    1212
    1313    const PLUGIN_README_URL = 'http://svn.wp-plugins.org/avh-first-defense-against-spam/trunk/readme.txt';
  • avh-first-defense-against-spam/trunk/libs/avh-registry.php

    r788439 r911122  
    9191            require_once ($this->_dir . $in . '/' . strtolower($file));
    9292            $name = ('system' == $type) ? 'AVH_' . $class : $this->_class_name_prefix . $class;
    93             $object = $this->instantiate_class(new $name());
     93            $object = new $name();
    9494            if ($store) {
    9595                $this->_objects[$class] = $object;
    9696            }
    9797            return $object;
    98         }
    99 
    100         /**
    101          * Instantiate Class
    102          *
    103          * Returns a new class object by reference, used by load_class() and the DB class.
    104          * Required to make PHP 5.3 cry.
    105          *
    106          * Use: $obj =& instantiate_class(new Foo());
    107          *
    108          * @access public
    109          * @param object
    110          * @return object
    111          */
    112         protected function instantiate_class (&$class_object)
    113         {
    114             return $class_object;
    11598        }
    11699
  • avh-first-defense-against-spam/trunk/readme.txt

    r842533 r911122  
    44Tags: spam, block, blacklist, whitelist, comment, anti-spam, comments
    55Requires at least: 2.8
    6 Tested up to: 3.8
    7 Stable tag: 3.6.5
     6Tested up to: 3.9.1
     7Stable tag: 3.6.7
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl.html
     
    124124
    125125== Changelog ==
     126= Version 3.6.7 =
     127* Better check for supported MySQL version. (Props: doublesharp)
     128
    126129= Version 3.6.5 =
    127130* "Display" Honeypot URL on the login and register screen.
Note: See TracChangeset for help on using the changeset viewer.