Ticket #19869 (closed defect (bug): fixed)
Formatting from code block during network setup doesn't match wp-config.php
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Priority: | normal | Milestone: | 3.4 |
| Component: | Multisite | Version: | 3.0 |
| Severity: | normal | Keywords: | has-patch commit |
| Cc: | MZAWeb |
Description
In the process of network setup the block of code generate to be pasted into wp-config.php uses single space padding within parentheses. This doesn't match the rest of the formatting in wp-config.php
Simple code consistency fix.
Attachments
Change History
comment:1
DrewAPicture — 4 months ago
- Cc xoodrew@… added
- Keywords 2nd-opinion added
I'm not sure this is valid. I know that WordPress coding standards normally calls for single spaces inside of opening and closing parentheses with functions and on both sides with if, foreach and switch statements. Shouldn't defining constants follow a similar pattern?
Shouldn't defining constants follow a similar pattern?
They should.
comment:3
DrewAPicture — 4 months ago
- Cc xoodrew@… removed
- Keywords 2nd-opinion removed
- Status changed from new to closed
- Resolution set to invalid
Shouldn't defining constants follow a similar pattern?
They should.
Maybe this should be the other way around, but not even the salts generator has spaces.
comment:4
follow-ups:
↓ 5
↓ 6
SergeyBiryukov — 4 months ago
I'd still vote for consistency though. Perhaps we should update wp-config-sample.php as per coding standards then?
comment:5
in reply to:
↑ 4
DrewAPicture — 4 months ago
Replying to SergeyBiryukov:
I'd still vote for consistency though. Perhaps we should update wp-config-sample.php as per coding standards then?
I can open a ticket. The salts generator would have to be updated too.
Edit: #19870
Replying to SergeyBiryukov:
I'd still vote for consistency though. Perhaps we should update wp-config-sample.php as per coding standards then?
This was one of those that could go either way. Which file do you choose to fix and why... Agreed though, the changes probably should be in wp-config-sample.php
But at least it was brought to awareness. Sorry on the delayed reply... timezones ;)
comment:7
DrewAPicture — 4 months ago
- Status changed from closed to reopened
- Version changed from 3.3.1 to 3.0
- Resolution invalid deleted
From @nacin's comment:ticket:19870:3 in #19870
I'd rather just re-open #19869 and remove the spaces from multisite. We have slightly different standards for user-edited files as it is (for example, line endings), and I'd rather not cause confusion or have extra work done over a few spaces in a define() call.
comment:8
SergeyBiryukov — 4 months ago
- Keywords commit added
- Milestone changed from Awaiting Review to 3.4
- Cc MZAWeb added
This is really small and related, sorry if I should open a new ticket about this.
wp-config-sample.php is also missing the ?> php closing tag at the end.
comment:10
in reply to:
↑ 9
ryanduff — 4 months ago
Replying to MZAWeb:
This is really small and related, sorry if I should open a new ticket about this.
wp-config-sample.php is also missing the ?> php closing tag at the end.
There are various reasons for that. For starters, its optional. Secondly, it can help avoid whitespace issues that may cause the common white screen of death error.
comment:11
in reply to:
↑ 9
SergeyBiryukov — 4 months ago
comment:12
nacin — 3 months ago
- Owner set to nacin
- Status changed from reopened to closed
- Resolution set to fixed
In [19956]:

