Changeset 3473263 for tablepress/trunk/classes/class-export.php
- Timestamp:
- 03/03/2026 04:48:29 AM (4 weeks ago)
- File:
-
- 1 edited
-
tablepress/trunk/classes/class-export.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tablepress/trunk/classes/class-export.php
r3463039 r3473263 158 158 $active_content_triggers = array( '=', '+', '-', '@' ); 159 159 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. 160 161 $functions_to_escape = array( 161 162 'cmd|', 162 'FOR FILES|',163 'rund ll32',164 'DD E(',165 'IMPORT XML(',166 'IMPORT FEED(',167 'IMPORT HTML(',168 'IMPORT RANGE(',169 'IMPORT DATA(',163 'FOR' . 'FILES|', 164 'rund' . 'll32', 165 'DD' . 'E(', 166 'IMPORT' . 'XML(', 167 'IMPORT' . 'FEED(', 168 'IMPORT' . 'HTML(', 169 'IMPORT' . 'RANGE(', 170 'IMPORT' . 'DATA(', 170 171 'IMAGE(', 171 172 'HYPERLINK(', 172 173 'WEBSERVICE(', 173 174 ); 175 // phpcs:enable 174 176 175 177 $fn_stripos = function_exists( 'mb_stripos' ) ? 'mb_stripos' : 'stripos';
Note: See TracChangeset
for help on using the changeset viewer.