Skip to content

Commit

Permalink
Merge branch 'release/2.3.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubmikita committed Nov 26, 2018
2 parents 45cece5 + e73321a commit 912e9e9
Show file tree
Hide file tree
Showing 10 changed files with 463 additions and 334 deletions.
7 changes: 5 additions & 2 deletions advanced-cron-manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
/**
* Plugin Name: Advanced Cron Manager
* Description: View, pause, remove, edit and add WP Cron events.
* Version: 2.3.4
* Version: 2.3.5
* Author: BracketSpace
* Author URI: https://bracketspace.com
* License: GPL3
* Text Domain: advanced-cron-manager
*/

$plugin_version = '2.3.4';
$plugin_version = '2.3.5';
$plugin_file = __FILE__;

/**
Expand Down Expand Up @@ -185,6 +185,9 @@ function acm_check_old_plugins( $plugins, $r ) {
add_action( 'wp_ajax_acm/server/settings/save', array( $server_settings(), 'save_settings' ) );
add_action( 'plugins_loaded', array( $server_processor(), 'block_cron_executions' ), 10, 1 );

// Plugin row actions
add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), array( $misc(), 'plugin_action_link' ) );

// Notification promo
add_action( 'plugins_loaded', function() use ( $misc ) {
if ( ! function_exists( 'register_trigger' ) ) {
Expand Down
4 changes: 2 additions & 2 deletions assets/dist/css/style.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/dist/js/scripts.min.js

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions assets/src/sass/parts/_events.scss
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,6 @@
background: #f5f5f5;
border-radius: 3px;
border: 1px solid #dbdbdb;
white-space: pre;
display: inline-block;
}

}
Expand Down
Loading

0 comments on commit 912e9e9

Please sign in to comment.