Plugin Directory

Changeset 3000349


Ignore:
Timestamp:
11/22/2023 08:06:35 PM (2 years ago)
Author:
Tkama
Message:

Update to version 1.8.2 from GitHub

Location:
kama-spamblock
Files:
4 added
2 deleted
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • kama-spamblock/assets/icon-128x128.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • kama-spamblock/assets/icon-256x256.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • kama-spamblock/assets/screenshot-1.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • kama-spamblock/assets/screenshot-2.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • kama-spamblock/tags/1.8.2/kama-spamblock.php

    r2624876 r3000349  
    33 * Plugin Name: Kama SpamBlock
    44 *
    5  * Description: Block spam when comment is posted by a robot. Checks pings/trackbacks for real backlink.
     5 * Description: Block spam when comment is posted by a robot. Check pings/trackbacks for real backlink.
    66 *
    77 * Text Domain: kama-spamblock
    88 * Domain Path: /languages
    99 *
    10  * Author: Kama
     10 * Author:     Kama
    1111 * Author URI: https://wp-kama.ru
    1212 * Plugin URI: https://wp-kama.ru/95
    1313 *
    14  * Version: 1.8.1
     14 * Requires PHP: 5.6
     15 * Requires at least: 2.7
     16 *
     17 * Version: 1.8.2
    1518 */
    1619
    17 require_once __DIR__ . '/class-Kama_Spamblock.php';
     20require_once __DIR__ . '/Kama_Spamblock.php';
     21require_once __DIR__ . '/Kama_Spamblock_Options.php';
    1822
    19 add_action( 'init', 'kama_spamblock', 11 );
     23add_action( 'init', 'kama_spamblock_init', 11 );
    2024
    21 function kama_spamblock(){
    22     return Kama_Spamblock::instance();
     25
     26function kama_spamblock_init() {
     27    return kama_spamblock()->init_plugin();
    2328}
    2429
     30/**
     31 * @return Kama_Spamblock
     32 */
     33function kama_spamblock() {
     34    static $inst;
     35
     36    $inst || $inst = new Kama_Spamblock( __FILE__ );
     37
     38    return $inst;
     39}
  • kama-spamblock/tags/1.8.2/readme.txt

    r2624876 r3000349  
    22Stable tag: trunk
    33Contributors: Tkama
    4 Requires at least: 2.7
    5 Tested up to: 5.8.1
     4Tested up to: 6.4.1
    65License: GPLv2 or later
    76License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • kama-spamblock/trunk/kama-spamblock.php

    r2624876 r3000349  
    33 * Plugin Name: Kama SpamBlock
    44 *
    5  * Description: Block spam when comment is posted by a robot. Checks pings/trackbacks for real backlink.
     5 * Description: Block spam when comment is posted by a robot. Check pings/trackbacks for real backlink.
    66 *
    77 * Text Domain: kama-spamblock
    88 * Domain Path: /languages
    99 *
    10  * Author: Kama
     10 * Author:     Kama
    1111 * Author URI: https://wp-kama.ru
    1212 * Plugin URI: https://wp-kama.ru/95
    1313 *
    14  * Version: 1.8.1
     14 * Requires PHP: 5.6
     15 * Requires at least: 2.7
     16 *
     17 * Version: 1.8.2
    1518 */
    1619
    17 require_once __DIR__ . '/class-Kama_Spamblock.php';
     20require_once __DIR__ . '/Kama_Spamblock.php';
     21require_once __DIR__ . '/Kama_Spamblock_Options.php';
    1822
    19 add_action( 'init', 'kama_spamblock', 11 );
     23add_action( 'init', 'kama_spamblock_init', 11 );
    2024
    21 function kama_spamblock(){
    22     return Kama_Spamblock::instance();
     25
     26function kama_spamblock_init() {
     27    return kama_spamblock()->init_plugin();
    2328}
    2429
     30/**
     31 * @return Kama_Spamblock
     32 */
     33function kama_spamblock() {
     34    static $inst;
     35
     36    $inst || $inst = new Kama_Spamblock( __FILE__ );
     37
     38    return $inst;
     39}
  • kama-spamblock/trunk/readme.txt

    r2624876 r3000349  
    22Stable tag: trunk
    33Contributors: Tkama
    4 Requires at least: 2.7
    5 Tested up to: 5.8.1
     4Tested up to: 6.4.1
    65License: GPLv2 or later
    76License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.