diff --git a/src/UNL/Catalog.php b/src/UNL/Catalog.php index 650280f4d084ae3e0740fdea291dbfc5f5ac3f89..bcab8bc0bbe7334315165d61ee8c44c95e668b89 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