Plugin Directory

Changeset 3220441


Ignore:
Timestamp:
01/10/2025 08:21:09 PM (15 months ago)
Author:
wibergsweb
Message:

Security patch #5
csvfiles saving. Add extra layer of checks when using editable file(s).
Extra checks for indexes checks in array - sourcetype guessonecol
Downloadable button - extra security checks

Location:
csv-to-html
Files:
891 added
3 edited

Legend:

Unmodified
Added
Removed
  • csv-to-html/trunk/csvtohtml.php

    r3220430 r3220441  
    44Plugin URI: http://www.wibergsweb.se/plugins/csvtohtml
    55Description:Display/edit/synchronize csv-file(s) dynamically into a html-table
    6 Version: 3.24
     6Version: 3.26
    77Author: Wibergs Web
    88Author URI: http://www.wibergsweb.se/
     
    358358
    359359        //Is the file writeable?
    360         if (!is_writable(dirname($file_path))) {
     360        if ( ! $wp_filesystem->is_writable( $file_path ) ) {
    361361            wp_send_json_error('The directory is not writable');
    362362        }
  • csv-to-html/trunk/export_csv.php

    r3220430 r3220441  
    6666
    6767    //Is the file writeable?
    68     if (!is_writable(dirname($temp_file))) {
     68    if ( ! $wp_filesystem->is_writable( $temp_file ) ) {
    6969        wp_die('The directory is not writable');
    7070    }
  • csv-to-html/trunk/readme.txt

    r3220430 r3220441  
    66Requires at least: 3.0.1
    77Tested up to: 6.7
    8 Stable Tag: 3.24
     8Stable Tag: 3.26
    99License: GPLv2
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    140140
    141141== Changelog ==
    142 = 3.24 = (2025-01-10)
     142= 3.26 = (2025-01-10)
    143143Security patch #5
    144144csvfiles saving. Add extra layer of checks when using editable file(s).
Note: See TracChangeset for help on using the changeset viewer.