Plugin Directory

Changeset 3469421


Ignore:
Timestamp:
02/25/2026 12:28:19 PM (4 weeks ago)
Author:
sc0ttkclark
Message:

Update to version 3.3.6 from GitHub

Location:
pods
Files:
16 edited
1 copied

Legend:

Unmodified
Added
Removed
  • pods/tags/3.3.6/changelog.txt

    r3468973 r3469421  
    33Our GitHub has the full list of all prior releases of Pods: https://github.com/pods-framework/pods/releases
    44
     5= 3.3.6 - February 25th, 2026 =
     6
     7* Fixed: Resolve a fatal error with `WP_Filesystem` usage. (@sc0ttkclark)
    58
    69= 3.3.5 - February 24th, 2026 =
  • pods/tags/3.3.6/classes/PodsAdmin.php

    r3468973 r3469421  
    46794679        $auto_start = pods_v( $auto_start, $settings_fields['session_auto_start']['data'], __( 'Unknown', 'pods' ) );
    46804680
     4681        require_once ABSPATH . '/wp-admin/includes/file.php';
    46814682        WP_Filesystem();
    46824683
  • pods/tags/3.3.6/classes/PodsMigrate.php

    r3468973 r3469421  
    858858        $perms = $stat['mode'] & 0000666;
    859859
     860        require_once ABSPATH . '/wp-admin/includes/file.php';
    860861        WP_Filesystem();
    861862
  • pods/tags/3.3.6/components/Migrate-PHP/Migrate-PHP.php

    r3468973 r3469421  
    130130     */
    131131    public function ajax_migrate( $params ) {
     132        require_once ABSPATH . '/wp-admin/includes/file.php';
    132133        WP_Filesystem();
    133134
  • pods/tags/3.3.6/includes/general.php

    r3468973 r3469421  
    46844684            // This is OK, but we don't want to check if file_exists on next statement.
    46854685        } else {
     4686            require_once ABSPATH . '/wp-admin/includes/file.php';
    46864687            WP_Filesystem();
    46874688
  • pods/tags/3.3.6/includes/media.php

    r3468973 r3469421  
    272272    $perms = $stat['mode'] & 0000666;
    273273
     274    require_once ABSPATH . '/wp-admin/includes/file.php';
    274275    WP_Filesystem();
    275276
  • pods/tags/3.3.6/init.php

    r3468973 r3469421  
    1111 * Plugin URI:        https://pods.io/
    1212 * Description:       Pods is a framework for creating, managing, and deploying customized content types and fields
    13  * Version:           3.3.5
     13 * Version:           3.3.6
    1414 * Author:            Pods Framework Team
    1515 * Author URI:        https://pods.io/about/
     
    5050} else {
    5151    // Current version.
    52     define( 'PODS_VERSION', '3.3.5' );
     52    define( 'PODS_VERSION', '3.3.6' );
    5353
    5454    // Current database version, this is the last version the database changed.
  • pods/tags/3.3.6/readme.txt

    r3468973 r3469421  
    66Tested up to: 7.0
    77Requires PHP: 7.2
    8 Stable tag: 3.3.5
     8Stable tag: 3.3.6
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    182182
    183183== Changelog ==
     184
     185= 3.3.6 - February 25th, 2026 =
     186
     187* Fixed: Resolve a fatal error with `WP_Filesystem` usage. (@sc0ttkclark)
    184188
    185189= 3.3.5 - February 24th, 2026 =
  • pods/trunk/changelog.txt

    r3468973 r3469421  
    33Our GitHub has the full list of all prior releases of Pods: https://github.com/pods-framework/pods/releases
    44
     5= 3.3.6 - February 25th, 2026 =
     6
     7* Fixed: Resolve a fatal error with `WP_Filesystem` usage. (@sc0ttkclark)
    58
    69= 3.3.5 - February 24th, 2026 =
  • pods/trunk/classes/PodsAdmin.php

    r3468973 r3469421  
    46794679        $auto_start = pods_v( $auto_start, $settings_fields['session_auto_start']['data'], __( 'Unknown', 'pods' ) );
    46804680
     4681        require_once ABSPATH . '/wp-admin/includes/file.php';
    46814682        WP_Filesystem();
    46824683
  • pods/trunk/classes/PodsMigrate.php

    r3468973 r3469421  
    858858        $perms = $stat['mode'] & 0000666;
    859859
     860        require_once ABSPATH . '/wp-admin/includes/file.php';
    860861        WP_Filesystem();
    861862
  • pods/trunk/components/Migrate-PHP/Migrate-PHP.php

    r3468973 r3469421  
    130130     */
    131131    public function ajax_migrate( $params ) {
     132        require_once ABSPATH . '/wp-admin/includes/file.php';
    132133        WP_Filesystem();
    133134
  • pods/trunk/includes/general.php

    r3468973 r3469421  
    46844684            // This is OK, but we don't want to check if file_exists on next statement.
    46854685        } else {
     4686            require_once ABSPATH . '/wp-admin/includes/file.php';
    46864687            WP_Filesystem();
    46874688
  • pods/trunk/includes/media.php

    r3468973 r3469421  
    272272    $perms = $stat['mode'] & 0000666;
    273273
     274    require_once ABSPATH . '/wp-admin/includes/file.php';
    274275    WP_Filesystem();
    275276
  • pods/trunk/init.php

    r3468973 r3469421  
    1111 * Plugin URI:        https://pods.io/
    1212 * Description:       Pods is a framework for creating, managing, and deploying customized content types and fields
    13  * Version:           3.3.5
     13 * Version:           3.3.6
    1414 * Author:            Pods Framework Team
    1515 * Author URI:        https://pods.io/about/
     
    5050} else {
    5151    // Current version.
    52     define( 'PODS_VERSION', '3.3.5' );
     52    define( 'PODS_VERSION', '3.3.6' );
    5353
    5454    // Current database version, this is the last version the database changed.
  • pods/trunk/readme.txt

    r3468973 r3469421  
    66Tested up to: 7.0
    77Requires PHP: 7.2
    8 Stable tag: 3.3.5
     8Stable tag: 3.3.6
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    182182
    183183== Changelog ==
     184
     185= 3.3.6 - February 25th, 2026 =
     186
     187* Fixed: Resolve a fatal error with `WP_Filesystem` usage. (@sc0ttkclark)
    184188
    185189= 3.3.5 - February 24th, 2026 =
Note: See TracChangeset for help on using the changeset viewer.