Changeset 3188526
- Timestamp:
- 11/14/2024 10:10:04 AM (17 months ago)
- Location:
- kleingarten/trunk
- Files:
-
- 4 edited
-
includes/class-kleingarten.php (modified) (1 diff)
-
includes/lib/class-kleingarten-post-types.php (modified) (2 diffs)
-
kleingarten.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kleingarten/trunk/includes/class-kleingarten.php
r3180484 r3188526 328 328 . '.js', array( 'jquery' ), $this->_version, true ); 329 329 wp_enqueue_script( $this->_token . '-admin' ); 330 } // End load_plugin_textdomain ()330 } 331 331 332 332 /** -
kleingarten/trunk/includes/lib/class-kleingarten-post-types.php
r3188074 r3188526 23 23 */ 24 24 public function __construct() { 25 26 // Moved init of allotment_plot_labels and $allotment_plot_args 27 // to register_allotment_plot_post_type() to deffer use of 28 // translation functions to init hook. 29 30 add_action( 'init', 31 array( $this, 'register_allotment_plot_post_type' ) ); 32 } 33 34 /** 35 * Register allotment plot post type 36 * 37 * return void 38 */ 39 public function register_allotment_plot_post_type() { 25 40 26 41 $this->allotment_plot_labels = array( … … 98 113 ); 99 114 100 add_action( 'init',101 array( $this, 'register_allotment_plot_post_type' ) );102 }103 104 /**105 * Register allotment plot post type106 *107 * return void108 */109 public function register_allotment_plot_post_type() {110 115 register_post_type( 'kleingarten_plot', $this->allotment_plot_args ); 111 116 } -
kleingarten/trunk/kleingarten.php
r3188077 r3188526 2 2 /** 3 3 * Plugin Name: Kleingarten 4 * Version: 1.0. 24 * Version: 1.0.3 5 5 * Plugin URI: https://www.wp-kleingarten.de/ 6 6 * Description: Make your website the digital home for your allotment garden association. … … 41 41 */ 42 42 function kleingarten() { 43 $instance = Kleingarten::instance( __FILE__, '1.0. 2' );43 $instance = Kleingarten::instance( __FILE__, '1.0.3' ); 44 44 45 45 if ( is_null( $instance->settings ) ) { -
kleingarten/trunk/readme.txt
r3188074 r3188526 4 4 Requires at least: 3.9 5 5 Tested up to: 6.7 6 Stable tag: 1.0. 26 Stable tag: 1.0.3 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 41 41 == Changelog == 42 42 43 = 1.0.3 = 44 * 2024-11-14 45 * Bugfix to post type initialisation to avoid warnings regarding the new handling of internationalisation in WordPress 6.7. 46 43 47 = 1.0.2 = 44 48 * 2024-11-13
Note: See TracChangeset
for help on using the changeset viewer.