Plugin Directory

Changeset 3174278


Ignore:
Timestamp:
10/23/2024 11:26:45 AM (18 months ago)
Author:
backupmonkey
Message:

Move cron check to task execution

Location:
remotemonkey/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • remotemonkey/trunk/readme.txt

    r3174095 r3174278  
    44Requires at least: 6.4
    55Tested up to: 6.6
    6 Stable tag: 1.1.3
     6Stable tag: 1.1.4
    77Requires PHP: 7.4
    88Author: BackupMonkey.io
  • remotemonkey/trunk/remotemonkey.php

    r3174095 r3174278  
    44Plugin Name: RemoteMonkey
    55Description: Connecting to the BackupMonkey website management
    6 Version: 1.1.3
     6Version: 1.1.4
    77Author: BackupMonkey.io Team <team@backupmonkey.io>
    88Author URI: https://backupmonkey.io/
     
    1515define( 'REMOTEMONKEY_APIURL', 'https://api.backupmonkey.io/' );
    1616define( 'REMOTEMONKEY_GUIURL', 'https://console.backupmonkey.io' );
    17 define( 'REMOTEMONKEY_VERSION', '1.1.3' );
     17define( 'REMOTEMONKEY_VERSION', '1.1.4' );
    1818
    1919/**
  • remotemonkey/trunk/src/Remotemonkey/Api/Base.php

    r3174095 r3174278  
    4949     */
    5050    public function init() {
    51         define('DOING_CRON', true);
    52 
    5351        add_action(
    5452            'wp_ajax_nopriv_remotemonkey_performtask',
     
    116114        }
    117115
     116        define('DOING_CRON', true);
     117
    118118        /** @var \Remotemonkey\Api\Controller\Controller $controller */
    119119        $controller = new $classname( $monkeytask );
Note: See TracChangeset for help on using the changeset viewer.