diff --git a/application/modules/courses/views/scripts/view/index.phtml b/application/modules/courses/views/scripts/view/index.phtml
index b21434c7bc9ddc873222a79bab2d900e1f5c3d41..403de4a9bd030c7d99809581b148ea0ac48fc275 100644
--- a/application/modules/courses/views/scripts/view/index.phtml
+++ b/application/modules/courses/views/scripts/view/index.phtml
@@ -153,10 +153,10 @@ $this->layout()->breadcrumbs = array($breadcrumb . ': ' . $this->course->getCour
         </div>
     </div>
     <?php if ($this->prevRequestId > 0) { ?>
-    <a id="prevRequestLink" href="<?php echo $this->url(array('id' => $this->prevRequestId)); ?>">&lt;--Prev</a>
+    <a id="prevRequestLink" href="<?php echo $this->url(array('module' => 'requests', 'id' => $this->prevRequestId)); ?>">&lt;--Prev</a>
     <?php } ?>
     <?php if ($this->nextRequestId > 0) { ?>
-    <a id="nextRequestLink" href="<?php echo $this->url(array('id' => $this->nextRequestId)); ?>">Next--&gt;</a>
+    <a id="nextRequestLink" href="<?php echo $this->url(array('module' => 'requests', 'id' => $this->nextRequestId)); ?>">Next--&gt;</a>
     <?php } ?>
     
     <?php if($this->canEdit) { ?>