PluginProbe
WP Data Access – App Builder for Tables, Forms, Charts, Maps & Dashboards / 5.5.85
WP Data Access – App Builder for Tables, Forms, Charts, Maps & Dashboards v5.5.85
5.5.85 5.5.84 5.5.83 5.5.82 5.5.81 5.5.80 5.5.79 5.5.77 5.5.76 5.5.75 5.5.73 5.5.72 5.5.22 5.5.23 5.5.29 5.5.3 5.5.31 5.5.32 5.5.34 5.5.35 5.5.36 5.5.37 5.5.4 5.5.40 5.5.41 All 161 releases
← All changes | WPDataAccess/Utilities/WPDA_Export_Scheduler.php +3 -1 5.5.75 → 5.5.85 View file →
@@ -84,9 +84,9 @@
84 84 // Cleanup
85 85 $drive->cleanup( $name . $separator . '*' . $file_ext . '.zip', $fkp );
86 86 }
87 87 // Remove ZIP file
88 - unlink( $zipfile );
88 + wp_delete_file( $zipfile );
89 89 self::mail( $eml, "Export {$name} successfully completed at " . gmdate( 'Y-m-d H:i:s' ) );
90 90 }
91 91 } else {
92 92 fseek( $temporary_file, 0 );
@@ -98,9 +98,11 @@
98 98 }
99 99 self::mail( $eml, "Export {$name} successfully completed at " . gmdate( 'Y-m-d H:i:s' ) );
100 100 }
101 101 // Remove temporary file
102 + // phpcs:disable WordPress.WP.AlternativeFunctions.file_system_operations_fclose
102 103 fclose( $temporary_file );
104 + // phpcs:enable WordPress.WP.AlternativeFunctions.file_system_operations_fclose
103 105 }
104 106 }
105 107 }
106 108 } else {