Changeset 54203 for trunk/tests/phpunit/tests/kses.php
- Timestamp:
- 09/19/2022 02:15:10 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/kses.php
r54117 r54203 2091 2091 */ 2092 2092 public function data_kses_globals_are_defined() { 2093 return array( 2094 'allowedposttags' => array( 2095 'global' => 'allowedposttags', 2096 ), 2097 'allowedtags' => array( 2098 'global' => 'allowedtags', 2099 ), 2100 'allowedentitynames' => array( 2101 'global' => 'allowedentitynames', 2102 ), 2103 'allowedxmlentitynames' => array( 2104 'global' => 'allowedxmlentitynames', 2105 ), 2106 ); 2093 $globals = array( 2094 'allowedposttags', 2095 'allowedtags', 2096 'allowedentitynames', 2097 'allowedxmlentitynames', 2098 ); 2099 2100 return $this->text_array_to_dataprovider( $globals ); 2107 2101 } 2108 2102 }
Note: See TracChangeset
for help on using the changeset viewer.