Opened 3 years ago

Closed 3 years ago

#11821 closed defect (bug) (fixed)

setup-config.php breaks UTF-8 in wp-config.php

Reported by: SergeyBiryukov Owned by:
Priority: normal Milestone: 3.0
Component: Upgrade/Install Version: 2.9
Severity: normal Keywords: has-patch
Cc: SergeyBiryukov

Description

This code is currently used in setup-config.php to display a wp-config.php content:

foreach( $configFile as $line ) {
	echo htmlentities($line);
}

It makes non-English comments unreadable. It probably should be:

foreach( $configFile as $line ) {
	echo htmlentities($line, ENT_COMPAT, 'UTF-8');
}

Thanks to Lecactus for the report.

Attachments (1)

11821.diff (819 bytes) - added by Denis-de-Bernardy 3 years ago.

Download all attachments as: .zip

Change History (3)

  • Keywords has-patch added
  • Milestone changed from Unassigned to 3.0
  • Version set to 2.9

comment:2   ryan3 years ago

  • Resolution set to fixed
  • Status changed from new to closed
Note: See TracTickets for help on using tickets.