Plugin Directory

Changeset 3349296


Ignore:
Timestamp:
08/24/2025 03:51:51 PM (7 months ago)
Author:
frickemedia
Message:

Adding version 1.4.3.

Location:
kleingarten
Files:
428 added
3 edited

Legend:

Unmodified
Added
Removed
  • kleingarten/trunk/includes/class-kleingarten-settings.php

    r3342187 r3349296  
    692692                    'callback'    => array(
    693693                        $this,
    694                         ''
     694                        'dummy_callback'
    695695                    ),
    696696                )
     
    10661066     * @return array|bool
    10671067     */
    1068     public function post_types_with_auto_likes_shortcode_callback( array $input
     1068    public function post_types_with_auto_likes_shortcode_callback( mixed $input
    10691069    ) {
    10701070
     
    11131113     */
    11141114    public function send_account_registration_notification_callback(
    1115         string $input
     1115        mixed $input
    11161116    ) {
    11171117
     
    11581158     * @return string Sanitized setting.
    11591159     */
    1160     public function send_account_activation_notification_callback( string $input
     1160    public function send_account_activation_notification_callback( mixed $input
    11611161    ) {
    11621162
     
    12201220     */
    12211221    public function send_new_post_notification_post_type_selection_callback(
    1222         array $input
     1222        mixed $input
    12231223    ) {
    12241224
     
    13731373     *
    13741374     */
    1375     public function show_footer_credits_callback( int $input ) {
     1375    public function show_footer_credits_callback( $input ) {
    13761376
    13771377        if ( $input != '' && $input != 'on' ) {
     
    13921392     *
    13931393     */
    1394     public function show_status_in_admin_menu_callback( int $input ) {
     1394    public function show_status_in_admin_menu_callback( mixed $input ) {
    13951395
    13961396        if ( $input != '' && $input != 'on' ) {
     
    15641564    }
    15651565
     1566    public function dummy_callback( $input ) {
     1567        return $input;
     1568    }
     1569
    15661570}
  • kleingarten/trunk/kleingarten.php

    r3345923 r3349296  
    22/**
    33 * Plugin Name: Kleingarten
    4  * Version: 1.4.2
     4 * Version: 1.4.3
    55 * Plugin URI: https://www.wp-kleingarten.de/
    66 * Description: Build a better website for your allotment gardening club.
     
    4646require_once 'includes/lib/class-kleingarten-project.php';
    4747require_once 'includes/lib/class-kleingarten-invoice.php';
     48require_once 'includes/lib/class-kleingarten-pdf-generator.php';
    4849
    4950/*
     
    6768function kleingarten() {
    6869
    69     $instance = Kleingarten::instance( __FILE__, '1.4.2' );
     70    $instance = Kleingarten::instance( __FILE__, '1.4.3' );
    7071
    7172    if ( is_null( $instance->settings ) ) {
  • kleingarten/trunk/readme.txt

    r3345923 r3349296  
    44Requires at least: 6.0
    55Tested up to: 6.8
    6 Stable tag: 1.4.2
     6Stable tag: 1.4.3
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4343
    4444== Changelog ==
     45
     46= 1.4.3 =
     47* FIXED: Enable plugin credits setting not working.
     48* Minor bugfixes.
    4549
    4650= 1.4.2 =
Note: See TracChangeset for help on using the changeset viewer.