Skip to content

Commit b1e50fa

Browse files
committed
version 1.9.1 released
1 parent b1e4a73 commit b1e50fa

6 files changed

Lines changed: 92 additions & 86 deletions

File tree

admin/class-cbxwpbookmark-admin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,7 @@ public function custom_message_after_plugin_row_proaddon($plugin_file, $plugin_d
827827
if(defined('CBXWPBOOKMARKADDON_PLUGIN_NAME')) return;
828828

829829
$pro_addon_version = CBXWPBookmarkHelper::get_any_plugin_version('cbxwpbookmarkaddon/cbxwpbookmarkaddon.php');
830-
$pro_latest_version = '1.4.7';
830+
$pro_latest_version = '1.4.8';
831831

832832
if($pro_addon_version != '' && version_compare( $pro_addon_version, $pro_latest_version, '<' ) ){
833833
// Custom message to display

cbxwpbookmark.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* Plugin Name: CBX Bookmark & Favorite
1616
* Plugin URI: https://codeboxr.com/product/cbx-wordpress-bookmark
1717
* Description: List/category based bookmark for WordPress, create your own private or public list of favorite posts, page, custom object
18-
* Version: 1.9.0
18+
* Version: 1.9.1
1919
* Author: Codeboxr Team
2020
* Author URI: https://codeboxr.com
2121
* License: GPL-2.0+
@@ -31,7 +31,7 @@
3131

3232

3333
defined( 'CBXWPBOOKMARK_PLUGIN_NAME' ) or define( 'CBXWPBOOKMARK_PLUGIN_NAME', 'cbxwpbookmark' );
34-
defined( 'CBXWPBOOKMARK_PLUGIN_VERSION' ) or define( 'CBXWPBOOKMARK_PLUGIN_VERSION', '1.9.0' );
34+
defined( 'CBXWPBOOKMARK_PLUGIN_VERSION' ) or define( 'CBXWPBOOKMARK_PLUGIN_VERSION', '1.9.1' );
3535
defined( 'CBXWPBOOKMARK_BASE_NAME' ) or define( 'CBXWPBOOKMARK_BASE_NAME', plugin_basename( __FILE__ ) );
3636
defined( 'CBXWPBOOKMARK_ROOT_PATH' ) or define( 'CBXWPBOOKMARK_ROOT_PATH', plugin_dir_path( __FILE__ ) );
3737
defined( 'CBXWPBOOKMARK_ROOT_URL' ) or define( 'CBXWPBOOKMARK_ROOT_URL', plugin_dir_url( __FILE__ ) );

includes/class-cbxwpbookmark.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,8 @@ private function load_dependencies() {
147147
* @access private
148148
*/
149149
private function define_common_hooks() {
150-
add_action( 'plugins_loaded', [ $this, 'load_plugin_textdomain' ] );
150+
//add_action( 'plugins_loaded', [ $this, 'load_plugin_textdomain' ] );
151+
add_action( 'init', [ $this, 'load_plugin_textdomain' ] );
151152
}//end method define_common_hooks
152153

153154
/**

0 commit comments

Comments
 (0)