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
304
Merge Requests
304
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
5a95824b
Commit
5a95824b
authored
May 28, 2013
by
alexpott
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue
#2002250
by dwieeb: Rename Views method get_title() to getTitle().
parent
ddfec678
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
core/modules/views/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php
...Drupal/views/Plugin/views/argument/ArgumentPluginBase.php
+2
-2
core/modules/views/lib/Drupal/views/ViewExecutable.php
core/modules/views/lib/Drupal/views/ViewExecutable.php
+1
-1
No files found.
core/modules/views/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php
View file @
5a95824b
...
...
@@ -106,7 +106,7 @@ function is_exception($arg = NULL) {
function
exception_title
()
{
// If title overriding is off for the exception, return the normal title.
if
(
empty
(
$this
->
options
[
'exception'
][
'title_enable'
]))
{
return
$this
->
get
_t
itle
();
return
$this
->
get
T
itle
();
}
return
$this
->
options
[
'exception'
][
'title'
];
}
...
...
@@ -926,7 +926,7 @@ function title() {
* Called by the view object to get the title. This may be set by a
* validator so we don't necessarily call through to title().
*/
function
get_t
itle
()
{
public
function
getT
itle
()
{
if
(
isset
(
$this
->
validated_title
))
{
return
$this
->
validated_title
;
}
...
...
core/modules/views/lib/Drupal/views/ViewExecutable.php
View file @
5a95824b
...
...
@@ -876,7 +876,7 @@ protected function _buildArguments() {
$arg_title
=
$argument
->
exception_title
();
}
else
{
$arg_title
=
$argument
->
get
_t
itle
();
$arg_title
=
$argument
->
get
T
itle
();
$argument
->
query
(
$this
->
display_handler
->
useGroupBy
());
}
...
...
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