15 lines
312 B
PHP
15 lines
312 B
PHP
<?php
|
|
/**
|
|
* MainWP Stats Cron.
|
|
*
|
|
* Include cron/bootstrap.php & run mainwp_cronreconnect_action.
|
|
*
|
|
* @package MainWP/Stats
|
|
*/
|
|
|
|
// include cron/bootstrap.php.
|
|
require_once 'bootstrap.php'; // NOSONAR - WP compatible.
|
|
|
|
// fire off mainWP->mainwp_cronreconnect_action.
|
|
$mainWP->mainwp_cronreconnect_action();
|