Skip to content

Commit

Permalink
tagging version 1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
viscosho committed Sep 3, 2019
1 parent 245b96c commit 82ea1c7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Changelog

### 1.2.3 - In Development
### 1.2.3 - September 03
* Dev - Adding the .gitattributes file to remove unnecessary files from the WordPress version.
* Fix - Changed the admin class to only run admin_init when it is not an AJAX request.

Expand Down
2 changes: 1 addition & 1 deletion classes/class-lsx-banners-admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function admin_init() {
//add_action( "{$taxonomy}_add_form_fields", array( $this, 'add_form_field' ),1 );
add_action( "{$taxonomy}_edit_form_fields", array( $this, 'add_form_field' ), 5, 1 );
}
}
}
add_action( 'create_term', array( $this, 'save_meta' ), 10, 2 );
add_action( 'edit_term', array( $this, 'save_meta' ), 10, 2 );

Expand Down
4 changes: 2 additions & 2 deletions lsx-banners.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: LSX Banners
* Plugin URI: https://lsx.lsdev.biz/extensions/banners/
* Description: The LSX Banners extension adds advanced banner configuration options to your WordPress site running LSX theme.
* Version: 1.2.2
* Version: 1.2.3
* Author: LightSpeed
* Author URI: https://www.lsdev.biz/
* License: GPL3
Expand All @@ -20,7 +20,7 @@
define( 'LSX_BANNERS_PATH', plugin_dir_path( __FILE__ ) );
define( 'LSX_BANNERS_CORE', __FILE__ );
define( 'LSX_BANNERS_URL', plugin_dir_url( __FILE__ ) );
define( 'LSX_BANNERS_VER', '1.2.2' );
define( 'LSX_BANNERS_VER', '1.2.3' );

if ( ! function_exists( 'cmb_init' ) && is_file( LSX_BANNERS_PATH . 'vendor/Custom-Meta-Boxes/custom-meta-boxes.php' ) && ! defined( 'LSX_BANNER_DISABLE_CMB' ) ) {
require LSX_BANNERS_PATH . 'vendor/Custom-Meta-Boxes/custom-meta-boxes.php';
Expand Down

0 comments on commit 82ea1c7

Please sign in to comment.