Changeset 55990 for trunk/src/wp-admin/setup-config.php
- Timestamp:
- 06/22/2023 02:55:47 PM (6 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/setup-config.php
r55412 r55990 364 364 $key = 0; 365 365 foreach ( $config_file as $line_num => $line ) { 366 if ( '$table_prefix =' === substr( $line, 0, 15) ) {366 if ( str_starts_with( $line, '$table_prefix =' ) ) { 367 367 $config_file[ $line_num ] = '$table_prefix = \'' . addcslashes( $prefix, "\\'" ) . "';\r\n"; 368 368 continue;
Note: See TracChangeset
for help on using the changeset viewer.