Changeset 3469421
- Timestamp:
- 02/25/2026 12:28:19 PM (4 weeks ago)
- Location:
- pods
- Files:
-
- 16 edited
- 1 copied
-
tags/3.3.6 (copied) (copied from pods/trunk)
-
tags/3.3.6/changelog.txt (modified) (1 diff)
-
tags/3.3.6/classes/PodsAdmin.php (modified) (1 diff)
-
tags/3.3.6/classes/PodsMigrate.php (modified) (1 diff)
-
tags/3.3.6/components/Migrate-PHP/Migrate-PHP.php (modified) (1 diff)
-
tags/3.3.6/includes/general.php (modified) (1 diff)
-
tags/3.3.6/includes/media.php (modified) (1 diff)
-
tags/3.3.6/init.php (modified) (2 diffs)
-
tags/3.3.6/readme.txt (modified) (2 diffs)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/classes/PodsAdmin.php (modified) (1 diff)
-
trunk/classes/PodsMigrate.php (modified) (1 diff)
-
trunk/components/Migrate-PHP/Migrate-PHP.php (modified) (1 diff)
-
trunk/includes/general.php (modified) (1 diff)
-
trunk/includes/media.php (modified) (1 diff)
-
trunk/init.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pods/tags/3.3.6/changelog.txt
r3468973 r3469421 3 3 Our GitHub has the full list of all prior releases of Pods: https://github.com/pods-framework/pods/releases 4 4 5 = 3.3.6 - February 25th, 2026 = 6 7 * Fixed: Resolve a fatal error with `WP_Filesystem` usage. (@sc0ttkclark) 5 8 6 9 = 3.3.5 - February 24th, 2026 = -
pods/tags/3.3.6/classes/PodsAdmin.php
r3468973 r3469421 4679 4679 $auto_start = pods_v( $auto_start, $settings_fields['session_auto_start']['data'], __( 'Unknown', 'pods' ) ); 4680 4680 4681 require_once ABSPATH . '/wp-admin/includes/file.php'; 4681 4682 WP_Filesystem(); 4682 4683 -
pods/tags/3.3.6/classes/PodsMigrate.php
r3468973 r3469421 858 858 $perms = $stat['mode'] & 0000666; 859 859 860 require_once ABSPATH . '/wp-admin/includes/file.php'; 860 861 WP_Filesystem(); 861 862 -
pods/tags/3.3.6/components/Migrate-PHP/Migrate-PHP.php
r3468973 r3469421 130 130 */ 131 131 public function ajax_migrate( $params ) { 132 require_once ABSPATH . '/wp-admin/includes/file.php'; 132 133 WP_Filesystem(); 133 134 -
pods/tags/3.3.6/includes/general.php
r3468973 r3469421 4684 4684 // This is OK, but we don't want to check if file_exists on next statement. 4685 4685 } else { 4686 require_once ABSPATH . '/wp-admin/includes/file.php'; 4686 4687 WP_Filesystem(); 4687 4688 -
pods/tags/3.3.6/includes/media.php
r3468973 r3469421 272 272 $perms = $stat['mode'] & 0000666; 273 273 274 require_once ABSPATH . '/wp-admin/includes/file.php'; 274 275 WP_Filesystem(); 275 276 -
pods/tags/3.3.6/init.php
r3468973 r3469421 11 11 * Plugin URI: https://pods.io/ 12 12 * Description: Pods is a framework for creating, managing, and deploying customized content types and fields 13 * Version: 3.3. 513 * Version: 3.3.6 14 14 * Author: Pods Framework Team 15 15 * Author URI: https://pods.io/about/ … … 50 50 } else { 51 51 // Current version. 52 define( 'PODS_VERSION', '3.3. 5' );52 define( 'PODS_VERSION', '3.3.6' ); 53 53 54 54 // Current database version, this is the last version the database changed. -
pods/tags/3.3.6/readme.txt
r3468973 r3469421 6 6 Tested up to: 7.0 7 7 Requires PHP: 7.2 8 Stable tag: 3.3. 58 Stable tag: 3.3.6 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 182 182 183 183 == Changelog == 184 185 = 3.3.6 - February 25th, 2026 = 186 187 * Fixed: Resolve a fatal error with `WP_Filesystem` usage. (@sc0ttkclark) 184 188 185 189 = 3.3.5 - February 24th, 2026 = -
pods/trunk/changelog.txt
r3468973 r3469421 3 3 Our GitHub has the full list of all prior releases of Pods: https://github.com/pods-framework/pods/releases 4 4 5 = 3.3.6 - February 25th, 2026 = 6 7 * Fixed: Resolve a fatal error with `WP_Filesystem` usage. (@sc0ttkclark) 5 8 6 9 = 3.3.5 - February 24th, 2026 = -
pods/trunk/classes/PodsAdmin.php
r3468973 r3469421 4679 4679 $auto_start = pods_v( $auto_start, $settings_fields['session_auto_start']['data'], __( 'Unknown', 'pods' ) ); 4680 4680 4681 require_once ABSPATH . '/wp-admin/includes/file.php'; 4681 4682 WP_Filesystem(); 4682 4683 -
pods/trunk/classes/PodsMigrate.php
r3468973 r3469421 858 858 $perms = $stat['mode'] & 0000666; 859 859 860 require_once ABSPATH . '/wp-admin/includes/file.php'; 860 861 WP_Filesystem(); 861 862 -
pods/trunk/components/Migrate-PHP/Migrate-PHP.php
r3468973 r3469421 130 130 */ 131 131 public function ajax_migrate( $params ) { 132 require_once ABSPATH . '/wp-admin/includes/file.php'; 132 133 WP_Filesystem(); 133 134 -
pods/trunk/includes/general.php
r3468973 r3469421 4684 4684 // This is OK, but we don't want to check if file_exists on next statement. 4685 4685 } else { 4686 require_once ABSPATH . '/wp-admin/includes/file.php'; 4686 4687 WP_Filesystem(); 4687 4688 -
pods/trunk/includes/media.php
r3468973 r3469421 272 272 $perms = $stat['mode'] & 0000666; 273 273 274 require_once ABSPATH . '/wp-admin/includes/file.php'; 274 275 WP_Filesystem(); 275 276 -
pods/trunk/init.php
r3468973 r3469421 11 11 * Plugin URI: https://pods.io/ 12 12 * Description: Pods is a framework for creating, managing, and deploying customized content types and fields 13 * Version: 3.3. 513 * Version: 3.3.6 14 14 * Author: Pods Framework Team 15 15 * Author URI: https://pods.io/about/ … … 50 50 } else { 51 51 // Current version. 52 define( 'PODS_VERSION', '3.3. 5' );52 define( 'PODS_VERSION', '3.3.6' ); 53 53 54 54 // Current database version, this is the last version the database changed. -
pods/trunk/readme.txt
r3468973 r3469421 6 6 Tested up to: 7.0 7 7 Requires PHP: 7.2 8 Stable tag: 3.3. 58 Stable tag: 3.3.6 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 182 182 183 183 == Changelog == 184 185 = 3.3.6 - February 25th, 2026 = 186 187 * Fixed: Resolve a fatal error with `WP_Filesystem` usage. (@sc0ttkclark) 184 188 185 189 = 3.3.5 - February 24th, 2026 =
Note: See TracChangeset
for help on using the changeset viewer.