diff options
Diffstat (limited to 'modules/path/path.module')
-rw-r--r-- | modules/path/path.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/path/path.module b/modules/path/path.module index ecda91ed2..e1e68e14f 100644 --- a/modules/path/path.module +++ b/modules/path/path.module @@ -95,7 +95,7 @@ function path_menu($may_cache) { * Menu callback; presents an overview of all URL aliases. */ function path_admin() { - print theme('page', path_overview()); + return path_overview(); } /** @@ -114,7 +114,7 @@ function path_admin_edit($pid = 0) { $output = path_form(); } - print theme('page', $output); + return $output; } /** |