Plugin Directory

Changeset 2241239


Ignore:
Timestamp:
02/09/2020 11:04:19 AM (6 years ago)
Author:
upress
Message:

v1.5.3

Location:
booter-bots-crawlers-manager
Files:
48 added
6 edited

Legend:

Unmodified
Added
Removed
  • booter-bots-crawlers-manager/trunk/booter-contstants.php

    r2238314 r2241239  
    99define( 'BOOTER_URL', plugin_dir_url( BOOTER_FILE ) );
    1010define( 'BOOTER_BASEBANE', basename( BOOTER_FILE ) );
    11 define( 'BOOTER_VERSION', '1.5.2' );
     11define( 'BOOTER_VERSION', '1.5.3' );
    1212define( 'BOOTER_404_DB_TABLE', 'booter_404s' );
  • booter-bots-crawlers-manager/trunk/booter-crawlers-manager.php

    r2238314 r2241239  
    88  Text Domain: booter
    99  Domain Path: /languages
    10   Version: 1.5.2
     10  Version: 1.5.3
    1111  License: GPLv2 or later
    1212  License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • booter-bots-crawlers-manager/trunk/changelog.txt

    r2238314 r2241239  
     1= 1.5.3 =
     2- Fix scheduled task not setting properly
     3
    14= 1.5.2 =
    25- Fix bots list not updating
  • booter-bots-crawlers-manager/trunk/includes/Log404.php

    r2233706 r2241239  
    2323        add_filter( 'cron_schedules', [ $this, 'add_cron_schedules' ] );
    2424        add_action( 'template_redirect', [ $this, 'maybe_log_404' ] );
     25        add_action( 'init', [ $this, 'schedule_cronjobs' ], 100 );
    2526
    2627        register_deactivation_hook( BOOTER_FILE, [ $this, 'deactivation_hook' ] );
    27         $this->schedule_cronjobs();
    2828    }
    2929
  • booter-bots-crawlers-manager/trunk/includes/RobotsWriter.php

    r2092087 r2241239  
    2626        add_filter( 'cron_schedules', [ $this, 'add_cron_schedule' ] );
    2727        add_action( 'booter_write_robots_file', [ $this, 'maybe_write_robots_file' ] );
     28        add_action( 'init', [ $this, 'schedule_cronjobs' ], 100 );
    2829        register_deactivation_hook( BOOTER_FILE, [ $this, 'clear_scheduled_task' ] );
    29         $this->schedule_cronjobs();
    3030
    3131        if ( is_admin() ) {
     
    7070    /**
    7171     * Intercept the settings save action and run the write robots function
     72     *
     73     * @param $old_value
     74     * @param $value
     75     * @param $option
    7276     */
    7377    function settings_save_write_robots( $old_value, $value, $option ) {
     
    119123    /**
    120124     * Write the robots.txt file
     125     * @param array|null $settings
    121126     */
    122127    function maybe_write_robots_file( $settings = null ) {
  • booter-bots-crawlers-manager/trunk/readme.txt

    r2238314 r2241239  
    4646
    4747== Changelog ==
     48= 1.5.3 =
     49- Fix scheduled task not setting properly
     50
    4851= 1.5.2 =
    4952- Fix bots list not updating
Note: See TracChangeset for help on using the changeset viewer.