Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
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
Show 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
get
T
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