From eadd413d54912fde2030001d17021887b0a72002 Mon Sep 17 00:00:00 2001 From: Brett Bieber <brett.bieber@gmail.com> Date: Mon, 3 Sep 2012 10:50:27 -0500 Subject: [PATCH] Alter order of titles to new template recommendations --- src/UNL/Catalog.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/UNL/Catalog.php b/src/UNL/Catalog.php index 650280f..bcab8bc 100644 --- a/src/UNL/Catalog.php +++ b/src/UNL/Catalog.php @@ -234,7 +234,7 @@ class UNL_Catalog */ public function showDepartments() { - $this->p->doctitle = '<title>UNL | Graduate Studies Bulletin | Areas of Study</title>'; + $this->p->doctitle = '<title>Areas of Study | Graduate Studies Bulletin | University of Nebraska-Lincoln</title>'; $d = $this->factory('departments'); $d->orderBy('name'); if ($d->find()) { @@ -292,7 +292,7 @@ class UNL_Catalog */ public function showSubjects() { - $this->p->doctitle = '<title>UNL | Graduate Studies Bulletin | Courses</title>'; + $this->p->doctitle = '<title>Courses | Graduate Studies Bulletin | University of Nebraska-Lincoln</title>'; $subject = $this->factory('subjects'); $subject->orderBy('id'); if ($subject->find()) { @@ -353,7 +353,7 @@ class UNL_Catalog if ($listings = $course_data->bySubject($id, 0, -1)) { $subject = new UNL_Services_CourseApproval_SubjectArea($id); - $this->p->doctitle = '<title>UNL | Graduate Studies Bulletin | Courses for '.$subject->subject.'</title>'; + $this->p->doctitle = '<title>Courses for '.$subject->subject.' | Graduate Studies Bulletin | University of Nebraska-Lincoln</title>'; if (count($listings)) { $savvy = $this->getCourseRenderer(); $this->p->maincontentarea .= '<a name="'.$subject->subject.'"></a><div class="subject" id="div_'.$subject->subject.'">'.PHP_EOL -- GitLab