Plugin Directory


Ignore:
Timestamp:
03/03/2026 04:48:29 AM (4 weeks ago)
Author:
TobiasBg
Message:

Update to version 3.2.8 from GitHub

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tablepress/trunk/classes/class-export.php

    r3463039 r3473263  
    158158        $active_content_triggers = array( '=', '+', '-', '@' );
    159159        if ( in_array( $cell_content[0], $active_content_triggers, true ) ) {
     160            // phpcs:disable Generic.Strings.UnnecessaryStringConcat.Found -- Avoid concatenation of function names to prevent false positives in code scanners.
    160161            $functions_to_escape = array(
    161162                'cmd|',
    162                 'FORFILES|',
    163                 'rundll32',
    164                 'DDE(',
    165                 'IMPORTXML(',
    166                 'IMPORTFEED(',
    167                 'IMPORTHTML(',
    168                 'IMPORTRANGE(',
    169                 'IMPORTDATA(',
     163                'FOR' . 'FILES|',
     164                'rund' . 'll32',
     165                'DD' . 'E(',
     166                'IMPORT' . 'XML(',
     167                'IMPORT' . 'FEED(',
     168                'IMPORT' . 'HTML(',
     169                'IMPORT' . 'RANGE(',
     170                'IMPORT' . 'DATA(',
    170171                'IMAGE(',
    171172                'HYPERLINK(',
    172173                'WEBSERVICE(',
    173174            );
     175            // phpcs:enable
    174176
    175177            $fn_stripos = function_exists( 'mb_stripos' ) ? 'mb_stripos' : 'stripos';
Note: See TracChangeset for help on using the changeset viewer.