Plugin Directory

Changeset 2667040


Ignore:
Timestamp:
01/27/2022 12:32:10 PM (4 years ago)
Author:
kubi23
Message:

tagged version 5.2.11

Location:
nospamnx
Files:
23 added
2 edited

Legend:

Unmodified
Added
Removed
  • nospamnx/trunk/nospamnx.php

    r2451325 r2667040  
    22/*
    33Plugin Name: NoSpamNX
    4 Plugin URI: http://wordpress.org/extend/plugins/nospamnx/
     4Plugin URI: https://wordpress.org/extend/plugins/nospamnx/
    55Description: To protect your blog from automated spambots, this plugin adds invisible formfields to your comment form.
    6 Version: 5.2.10
     6Version: 5.2.11
    77Author: Sven Kubiak
    8 Author URI: http://svenkubiak.de
     8Author URI: https://svenkubiak.de
    99License: GPLv2 or later
    10 License URI: http://www.gnu.org/licenses/gpl-2.0.html
     10License URI: https://www.gnu.org/licenses/gpl-2.0.html
    1111Text Domain: nospamnx
    1212Domain Path: /languages
    1313
    14 Copyright 2008-2021 Sven Kubiak
     14Copyright 2008-2022 Sven Kubiak
    1515
    1616This program is free software; you can redistribute it and/or modify
     
    3030global $wp_version;
    3131define('NXISWP30', version_compare($wp_version, '3.0', '>='));
    32 define('NXCURLTO', 5);
    3332
    3433if (!class_exists('NoSpamNX'))
     
    553552            $curl = curl_init();
    554553            curl_setopt($curl,CURLOPT_URL,$this->nospamnx_blacklist_global_url);
    555             curl_setopt($curl,CURLOPT_CONNECTTIMEOUT,NXCURLTO);
     554            curl_setopt($curl,CURLOPT_CONNECTTIMEOUT,5);
    556555            curl_setopt($curl,CURLOPT_RETURNTRANSFER,1);
    557556            $buffer = curl_exec($curl);
  • nospamnx/trunk/readme.txt

    r2451325 r2667040  
    11=== Plugin Name ===
    22Contributors: kubi23
    3 Tested up to: 5.6
    4 Stable tag: 5.2.10
     3Tested up to: 5.9
     4Stable tag: 5.2.11
    55Requires at least: 3.0
    66
     
    117117== Changelog ==
    118118
     119= 5.2.11 =
     120* Cleanup and set copyright to 2022
     121
    119122= 5.2.10 =
    120123* Cosmetics on settings
Note: See TracChangeset for help on using the changeset viewer.