Plugin Directory

Changeset 3223654


Ignore:
Timestamp:
01/16/2025 02:53:01 PM (15 months ago)
Author:
wallkit
Message:

tagging version 3.4.2

Location:
wallkit
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wallkit/tags/3.4.2/admin/class-wallkit-wp-admin.php

    r3155283 r3223654  
    649649        }
    650650
     651        // If there are blocks in this content, we shouldn't run wpautop() on it later.
     652        $priority = has_filter( 'the_content', 'wpautop' );
     653        if ( false !== $priority && has_blocks( $content ) ) {
     654            remove_filter( 'the_content', 'wpautop', $priority );
     655            add_filter( 'the_content', '_restore_wpautop_hook', $priority + 1 );
     656        }
     657
    651658        // Returning formatted content if it contains gutenberg blocks
    652659        if( has_blocks( $content ) ) {
  • wallkit/tags/3.4.2/readme.txt

    r3218447 r3223654  
    2828== Changelog ==
    2929
     30= 3.4.2 =
     31*Release Date - 16 January 2025*
     32
     33#### Updates including:
     34- Fix content parse issues for block editor.
     35
    3036= 3.4.1 =
    3137*Release Date - 07 January 2025*
  • wallkit/tags/3.4.2/wallkit-wp.php

    r3218447 r3223654  
    1010 * Plugin URI:        https://wallkit.net
    1111 * Description:       A Plug & Play paid-content system to manage subscribers, gather fees and drive additional content sales.
    12  * Version:           3.4.1
     12 * Version:           3.4.2
    1313 * Author:            Wallkit <dev@wallkit.net>
    1414 * Author URI:        https://wallkit.net/
     
    2727 * Rename this for your plugin and update it as you release new versions.
    2828 */
    29 define( 'WPWKP_VERSION', '3.4.1' );
     29define( 'WPWKP_VERSION', '3.4.2' );
    3030
    3131/**
  • wallkit/trunk/admin/class-wallkit-wp-admin.php

    r3155283 r3223654  
    649649        }
    650650
     651        // If there are blocks in this content, we shouldn't run wpautop() on it later.
     652        $priority = has_filter( 'the_content', 'wpautop' );
     653        if ( false !== $priority && has_blocks( $content ) ) {
     654            remove_filter( 'the_content', 'wpautop', $priority );
     655            add_filter( 'the_content', '_restore_wpautop_hook', $priority + 1 );
     656        }
     657
    651658        // Returning formatted content if it contains gutenberg blocks
    652659        if( has_blocks( $content ) ) {
  • wallkit/trunk/readme.txt

    r3218447 r3223654  
    2828== Changelog ==
    2929
     30= 3.4.2 =
     31*Release Date - 16 January 2025*
     32
     33#### Updates including:
     34- Fix content parse issues for block editor.
     35
    3036= 3.4.1 =
    3137*Release Date - 07 January 2025*
  • wallkit/trunk/wallkit-wp.php

    r3218447 r3223654  
    1010 * Plugin URI:        https://wallkit.net
    1111 * Description:       A Plug & Play paid-content system to manage subscribers, gather fees and drive additional content sales.
    12  * Version:           3.4.1
     12 * Version:           3.4.2
    1313 * Author:            Wallkit <dev@wallkit.net>
    1414 * Author URI:        https://wallkit.net/
     
    2727 * Rename this for your plugin and update it as you release new versions.
    2828 */
    29 define( 'WPWKP_VERSION', '3.4.1' );
     29define( 'WPWKP_VERSION', '3.4.2' );
    3030
    3131/**
Note: See TracChangeset for help on using the changeset viewer.