Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
D
drupal
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Custom Issue Tracker
Custom Issue Tracker
Labels
Merge Requests
221
Merge Requests
221
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
project
drupal
Commits
8b8c4202
Commit
8b8c4202
authored
Jan 22, 2013
by
jhodgdon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue
#1894382
by nick_schuch: fix misspelling of word indices in a few spots
parent
3b43ec47
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
core/modules/system/system.install
core/modules/system/system.install
+2
-2
core/modules/taxonomy/taxonomy.install
core/modules/taxonomy/taxonomy.install
+2
-2
No files found.
core/modules/system/system.install
View file @
8b8c4202
...
...
@@ -1540,8 +1540,8 @@ function system_update_8004() {
// internationalization, keep it, but standardize the specification.
// Otherwise, add the field.
if
(
db_field_exists
(
'file_managed'
,
'langcode'
))
{
// According to the documentation of db_change_field(), ind
e
ces using the
// field should be dropped first; if the contrib module created any ind
e
ces,
// According to the documentation of db_change_field(), ind
i
ces using the
// field should be dropped first; if the contrib module created any ind
i
ces,
// it is its responsibility to drop them in an update function that runs
// before this one, which it can enforce via hook_update_dependencies().
db_change_field
(
'file_managed'
,
'langcode'
,
'langcode'
,
$langcode_field
);
...
...
core/modules/taxonomy/taxonomy.install
View file @
8b8c4202
...
...
@@ -225,9 +225,9 @@ function taxonomy_update_8001() {
// internationalization, keep it, but standardize the specification.
// Otherwise, add the field.
if
(
db_field_exists
(
$table
,
'langcode'
))
{
// According to the documentation of db_change_field(), ind
e
ces using the
// According to the documentation of db_change_field(), ind
i
ces using the
// field should be dropped first; if the contrib module created any
// ind
e
ces, it is its responsibility to drop them in an update function
// ind
i
ces, it is its responsibility to drop them in an update function
// that runs before this one, which it can enforce via
// hook_update_dependencies().
db_change_field
(
$table
,
'langcode'
,
'langcode'
,
$langcode_field
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment