Changeset 911122
- Timestamp:
- 05/09/2014 02:58:33 PM (12 years ago)
- Location:
- avh-first-defense-against-spam/trunk
- Files:
-
- 5 edited
-
avh-fdas.php (modified) (1 diff)
-
class/avh-fdas.admin.php (modified) (1 diff)
-
class/avh-fdas.define.php (modified) (1 diff)
-
libs/avh-registry.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
avh-first-defense-against-spam/trunk/avh-fdas.php
r842210 r911122 4 4 * URI: http://blog.avirtualhome.com/wordpress-plugins 5 5 * Description: This plugin gives you the ability to block spammers before content is served. 6 * Version: 3.6. 56 * Version: 3.6.7 7 7 * Author: Peter van der Does 8 8 * Author URI: http://blog.avirtualhome.com/ -
avh-first-defense-against-spam/trunk/class/avh-fdas.admin.php
r842210 r911122 1621 1621 // Setup the DB Tables 1622 1622 $charset_collate = ''; 1623 if (version_compare( mysql_get_server_info(), '4.1.0', '>=')) {1623 if (version_compare($wpdb->db_version(), '4.1.0', '>=')) { 1624 1624 if (! empty($wpdb->charset)) 1625 1625 $charset_collate = 'DEFAULT CHARACTER SET ' . $wpdb->charset; -
avh-first-defense-against-spam/trunk/class/avh-fdas.define.php
r842210 r911122 9 9 * General Constants 10 10 */ 11 const PLUGIN_VERSION = '3.6. 5';11 const PLUGIN_VERSION = '3.6.7'; 12 12 13 13 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 91 91 require_once ($this->_dir . $in . '/' . strtolower($file)); 92 92 $name = ('system' == $type) ? 'AVH_' . $class : $this->_class_name_prefix . $class; 93 $object = $this->instantiate_class(new $name());93 $object = new $name(); 94 94 if ($store) { 95 95 $this->_objects[$class] = $object; 96 96 } 97 97 return $object; 98 }99 100 /**101 * Instantiate Class102 *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 public109 * @param object110 * @return object111 */112 protected function instantiate_class (&$class_object)113 {114 return $class_object;115 98 } 116 99 -
avh-first-defense-against-spam/trunk/readme.txt
r842533 r911122 4 4 Tags: spam, block, blacklist, whitelist, comment, anti-spam, comments 5 5 Requires at least: 2.8 6 Tested up to: 3. 87 Stable tag: 3.6. 56 Tested up to: 3.9.1 7 Stable tag: 3.6.7 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl.html … … 124 124 125 125 == Changelog == 126 = Version 3.6.7 = 127 * Better check for supported MySQL version. (Props: doublesharp) 128 126 129 = Version 3.6.5 = 127 130 * "Display" Honeypot URL on the login and register screen.
Note: See TracChangeset
for help on using the changeset viewer.