Plugin Directory

Changeset 1463306


Ignore:
Timestamp:
07/29/2016 04:11:33 PM (10 years ago)
Author:
petervanderdoes
Message:

Release v3.7.3

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

Legend:

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

    r1458510 r1463306  
    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.7.2
     6 * Version: 3.7.3
    77 * Author: Peter van der Does
    88 * Author URI: http://blog.avirtualhome.com/
  • avh-first-defense-against-spam/trunk/class/avh-fdas.admin.php

    r1458510 r1463306  
    11851185        echo '      </div>';
    11861186        echo '  </div>'; // dashboard-widgets-wrap
    1187         echo '<p class="submit"><getInput class="button-primary" type="submit" name="updateoptions" value="' .
     1187        echo '<p class="submit"><input class="button-primary" type="submit" name="updateoptions" value="' .
    11881188             __('Save Changes',
    11891189                'avh-fdas') .
     
    14791479        echo '<br class="clear"/>';
    14801480        echo '  </div>'; // dashboard-widgets-wrap
    1481         echo '<p class="submit"><getInput   class="button-primary"  type="submit" name="updateoptions" value="' .
     1481        echo '<p class="submit"><input class="button-primary"   type="submit" name="updateoptions" value="' .
    14821482             __('Save Changes',
    14831483                'avh-fdas') .
  • avh-first-defense-against-spam/trunk/class/avh-fdas.db.php

    r1458510 r1463306  
    238238        $ip_cache_arr['ip'] = AVH_Common::getIp2long($ip_cache_arr['ip']);
    239239
    240         $ip = $this->getIP($ip_cache_arr['ip'], ARRAY_A);
    241 
    242         $ip = esc_sql($ip);
    243 
    244         $ip_cache_arr = array_merge($ip, $ip_cache_arr);
     240        $ip_data = $this->getIP($ip_cache_arr['ip'], ARRAY_A);
     241
     242        $ip_data = esc_sql($ip_data);
     243
     244        $ip_cache_arr = array_merge($ip_data, $ip_cache_arr);
    245245
    246246        extract(stripslashes_deep($ip_cache_arr), EXTR_SKIP);
  • avh-first-defense-against-spam/trunk/readme.txt

    r1458510 r1463306  
    55Requires at least: 4.5
    66Tested up to: 4.5
    7 Stable tag: 3.7.2
     7Stable tag: 3.7.3
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl.html
     
    125125
    126126== Changelog ==
     127= Version 3.7.3 =
     128* Missing buttons in the admin section.
     129* MySQLi error.
     130
    127131= Version 3.7.2 =
    128132* Clean up code
Note: See TracChangeset for help on using the changeset viewer.