Make WordPress Core

Ticket #44318: 44318.patch

File 44318.patch, 627 bytes (added by shashwatmittal, 6 years ago)
  • src/wp-admin/setup-config.php

     
    347347
    348348                $key = 0;
    349349                foreach ( $config_file as $line_num => $line ) {
    350                         if ( '$table_prefix  =' == substr( $line, 0, 16 ) ) {
    351                                 $config_file[ $line_num ] = '$table_prefix  = \'' . addcslashes( $prefix, "\\'" ) . "';\r\n";
     350                        if ( '$table_prefix =' == substr( $line, 0, 16 ) ) {
     351                                $config_file[ $line_num ] = '$table_prefix = \'' . addcslashes( $prefix, "\\'" ) . "';\r\n";
    352352                                continue;
    353353                        }
    354354