Issue #2002488 by baldwinlouie, jibran: Rename Views method exception_title() to exceptionTitle().
parent
f1ba409443
commit
92030a2f4e
|
@ -103,7 +103,7 @@ abstract class ArgumentPluginBase extends HandlerBase {
|
|||
return !empty($this->options['exception']['value']) && $this->options['exception']['value'] === $arg;
|
||||
}
|
||||
|
||||
function exception_title() {
|
||||
public function exceptionTitle() {
|
||||
// If title overriding is off for the exception, return the normal title.
|
||||
if (empty($this->options['exception']['title_enable'])) {
|
||||
return $this->getTitle();
|
||||
|
|
|
@ -876,7 +876,7 @@ class ViewExecutable {
|
|||
}
|
||||
|
||||
if ($argument->isException()) {
|
||||
$arg_title = $argument->exception_title();
|
||||
$arg_title = $argument->exceptionTitle();
|
||||
}
|
||||
else {
|
||||
$arg_title = $argument->getTitle();
|
||||
|
|
Loading…
Reference in New Issue