diff --git a/views/enquiries/view.ctp b/views/enquiries/view.ctp
index 41641076..91463a08 100755
--- a/views/enquiries/view.ctp
+++ b/views/enquiries/view.ctp
@@ -199,9 +199,9 @@ $class = ' class="altrow"';?>
- link(__('View', true), array('action' => 'view', $job['Job']['id'])); ?>
- link(__('Edit', true), array('action' => 'edit', $job['Job']['id'])); ?>
- link(__('Delete', true), array('action' => 'delete', $job['Job']['id']), null, sprintf(__('Are you sure you want to delete # %s?', true), $job['Job']['id'])); ?>
+ link(__('View', true), array('controller'=>'jobs', 'action' => 'view', $job['Job']['id'])); ?>
+ link(__('Edit', true), array('controller'=>'jobs','action' => 'edit', $job['Job']['id'])); ?>
+ link(__('Delete', true), array('controller'=>'jobs','action' => 'delete', $job['Job']['id']), null, sprintf(__('Are you sure you want to delete # %s?', true), $job['Job']['id'])); ?>
|