Issue #2002488 by baldwinlouie, jibran: Rename Views method exception_title() to exceptionTitle().

8.0.x
Alex Pott 2013-06-05 22:00:08 +01:00
parent f1ba409443
commit 92030a2f4e
2 changed files with 2 additions and 2 deletions

View File

@ -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();

View File

@ -876,7 +876,7 @@ class ViewExecutable {
}
if ($argument->isException()) {
$arg_title = $argument->exception_title();
$arg_title = $argument->exceptionTitle();
}
else {
$arg_title = $argument->getTitle();