From 567e85c5ce16372ea8442511a6fde9cf425a9ada Mon Sep 17 00:00:00 2001
From: Brett Bieber <brett.bieber@gmail.com>
Date: Thu, 6 Sep 2012 17:36:04 -0500
Subject: [PATCH] Convert URI format to not use querystrings for subject areas

---
 src/UNL/Catalog/Subjects.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/UNL/Catalog/Subjects.php b/src/UNL/Catalog/Subjects.php
index 25f3d45..c8b7e7d 100644
--- a/src/UNL/Catalog/Subjects.php
+++ b/src/UNL/Catalog/Subjects.php
@@ -29,7 +29,7 @@ class UNL_Catalog_Subjects extends DB_DataObject
                 break;
             case 'querystring':
             default:
-                return $catalog->uri.'?view=subject&amp;id='.$this->id;
+                return $catalog->uri.'courses/'.$this->id;
         }
     }
 }
-- 
GitLab