diff options
Diffstat (limited to 'modules/path/path.module')
-rw-r--r-- | modules/path/path.module | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/path/path.module b/modules/path/path.module index 43b2d0ec2..86a9bea07 100644 --- a/modules/path/path.module +++ b/modules/path/path.module @@ -264,8 +264,9 @@ function path_overview() { $sql .= tablesort_sql($header); $result = pager_query($sql, 50); + $destination = drupal_get_destination(); while ($data = db_fetch_object($result)) { - $rows[] = array($data->dst, $data->src, l(t('edit'), "admin/path/edit/$data->pid"), l(t('delete'), "admin/path/delete/$data->pid")); + $rows[] = array($data->dst, $data->src, l(t('edit'), "admin/path/edit/$data->pid", array(), $destination), l(t('delete'), "admin/path/delete/$data->pid")); } if ($pager = theme('pager', NULL, 50, 0, tablesort_pager())) { |