Problem/Motivation
Typo mistake in a core/INSTALL.txt file in Drupal core.
defaults.settings.php should be default.settings.php.
Proposed resolution
Replace defaults.settings.php to default.settings.php.
Remaining tasks
Create patchReview/RTBC- Commit
User interface changes
None.
API changes
None.
Data model changes
None.
Release notes snippet
Fixed typo in core/INSTALL.txt file
Original report by sandeepscs
Typo mistake in a core/INSTALL.txt file in Drupal core. defaults.settings.php should be default.settings.php.
We can add the following code to resolve this problem.
diff --git a/core/INSTALL.txt b/core/INSTALL.txt
old mode 100644
new mode 100755
index cf8019f..e3e7bb4
--- a/core/INSTALL.txt
+++ b/core/INSTALL.txt
@@ -405,7 +405,7 @@ The new directory name is constructed from the site's URL. The configuration
for www.example.com could be in 'sites/example.com/settings.php' (note that
'www.' should be omitted if users can access your site at http://example.com/).- $ cp sites/default/defaults.settings.php sites/example.com/settings.php
+ $ cp sites/default/default.settings.php sites/example.com/settings.phpSites do not have to have a different domain. You can also use subdomains and
subdirectories for Drupal sites. For example, example.com, sub.example.com, and
s
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | fix-type-in-core-install-file-3040562.patch | 718 bytes | sandeepscs |
Comments
Comment #2
sandeepscs commentedPlease find the attached file for the patch of same.
Comment #3
idebr commentedComment #4
i-trokhanenkoReviewed patch #2. Pach successfully applied locally. Make sense to fix a typo. +1 RTBC.
Thanks!
Comment #5
i-trokhanenkoUsed issue summary template.
Comment #6
alexpottCommitted and pushed 8a76eeecf6 to 8.8.x and 057ef82d26 to 8.7.x. Thanks!
The mode shouldn't be changed by the patch. Fixed on commit.
Comment #9
alexpott