From 6d2a717eda0b6e723774699d77ff1437dc36a2a6 Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Fri, 8 Aug 2014 08:54:00 -0400
Subject: [PATCH] Fixed incorrect string.

---
 themes/blueprint/templates/myresearch/recover.phtml    | 2 +-
 themes/bootstrap/templates/myresearch/recover.phtml    | 2 +-
 themes/bootstrap3/templates/myresearch/recover.phtml   | 2 +-
 themes/jquerymobile/templates/myresearch/recover.phtml | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/themes/blueprint/templates/myresearch/recover.phtml b/themes/blueprint/templates/myresearch/recover.phtml
index afffcc651e8..c2d8d33275c 100644
--- a/themes/blueprint/templates/myresearch/recover.phtml
+++ b/themes/blueprint/templates/myresearch/recover.phtml
@@ -1,4 +1,4 @@
-<h2><?=$this->transEsc('Password Recovery') ?></h2>
+<h2><?=$this->transEsc('recovery_title') ?></h2>
 <?=$this->flashmessages()?>
 <? if (!$this->auth()->getManager()->supportsRecovery()): ?>
   <div class="error"><?=$this->transEsc('recovery_disabled') ?></div>
diff --git a/themes/bootstrap/templates/myresearch/recover.phtml b/themes/bootstrap/templates/myresearch/recover.phtml
index e2c25e006b1..0ecb7cec0f9 100644
--- a/themes/bootstrap/templates/myresearch/recover.phtml
+++ b/themes/bootstrap/templates/myresearch/recover.phtml
@@ -1,4 +1,4 @@
-<h2><?=$this->transEsc('Password Recovery') ?></h2>
+<h2><?=$this->transEsc('recovery_title') ?></h2>
 <?=$this->flashmessages()?>
 <? if (!$this->auth()->getManager()->supportsRecovery()): ?>
   <div class="error"><?=$this->transEsc('recovery_disabled') ?></div>
diff --git a/themes/bootstrap3/templates/myresearch/recover.phtml b/themes/bootstrap3/templates/myresearch/recover.phtml
index e2c25e006b1..0ecb7cec0f9 100644
--- a/themes/bootstrap3/templates/myresearch/recover.phtml
+++ b/themes/bootstrap3/templates/myresearch/recover.phtml
@@ -1,4 +1,4 @@
-<h2><?=$this->transEsc('Password Recovery') ?></h2>
+<h2><?=$this->transEsc('recovery_title') ?></h2>
 <?=$this->flashmessages()?>
 <? if (!$this->auth()->getManager()->supportsRecovery()): ?>
   <div class="error"><?=$this->transEsc('recovery_disabled') ?></div>
diff --git a/themes/jquerymobile/templates/myresearch/recover.phtml b/themes/jquerymobile/templates/myresearch/recover.phtml
index e9246a17676..683b94b4e79 100644
--- a/themes/jquerymobile/templates/myresearch/recover.phtml
+++ b/themes/jquerymobile/templates/myresearch/recover.phtml
@@ -1,6 +1,6 @@
 <?
   // Set up page title:
-  $this->headTitle(isset($list) ? $list->title : $this->translate('recovery_title'));
+  $this->headTitle($this->translate('recovery_title'));
 
   // Set up extra button for header:
   $extraButton = '<a rel="external" href="'
-- 
GitLab