diff options
Diffstat (limited to 'modules/path.module')
-rw-r--r-- | modules/path.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/path.module b/modules/path.module index c8a3caff2..43b2d0ec2 100644 --- a/modules/path.module +++ b/modules/path.module @@ -107,14 +107,14 @@ function path_admin_edit($pid = 0) { } elseif ($pid) { $alias = path_load($pid); - $title = $alias['dst']; + drupal_set_title($alias['dst']); $output = path_form(path_load($pid)); } else { $output = path_form(); } - print theme('page', $output, $title); + print theme('page', $output); } /** |