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
311
Merge Requests
311
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
a56602e8
Commit
a56602e8
authored
May 10, 2013
by
catch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue
#1989996
by swentel: Fixed @config_file() placeholder not replaced in popup.
parent
f406799a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
core/modules/config/lib/Drupal/config/Controller/ConfigController.php
.../config/lib/Drupal/config/Controller/ConfigController.php
+1
-1
core/modules/config/lib/Drupal/config/Tests/ConfigImportUITest.php
...les/config/lib/Drupal/config/Tests/ConfigImportUITest.php
+1
-0
No files found.
core/modules/config/lib/Drupal/config/Controller/ConfigController.php
View file @
a56602e8
...
...
@@ -94,7 +94,7 @@ public function diff($config_file) {
// @todo Remove use of drupal_set_title() when
// http://drupal.org/node/1871596 is in.
drupal_set_title
(
'View changes of @config_file'
,
array
(
'@config_file'
=>
$config_file
)
);
drupal_set_title
(
t
(
'View changes of @config_file'
,
array
(
'@config_file'
=>
$config_file
)),
PASS_THROUGH
);
return
$output
;
}
...
...
core/modules/config/lib/Drupal/config/Tests/ConfigImportUITest.php
View file @
a56602e8
...
...
@@ -151,6 +151,7 @@ function testImportDiff() {
// Load the diff UI and verify that the diff reflects the change.
$this
->
drupalGet
(
'admin/config/development/sync/diff/'
.
$config_name
);
$this
->
assertTitle
(
format_string
(
'View changes of @config_name | Drupal'
,
array
(
'@config_name'
=>
$config_name
)));
// Reset data back to original, and remove a key
$staging_data
=
$original_data
;
...
...
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