Skip to content
Snippets Groups Projects
Commit eadd413d authored by Brett Bieber's avatar Brett Bieber
Browse files

Alter order of titles to new template recommendations

parent 30e4cc6c
Branches
Tags
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment