diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-04-24 16:34:36 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-04-24 16:34:36 +0000 |
commit | a76a1e1f3f5b641663ef3d00a752ec1cbd1d4ee9 (patch) | |
tree | 77a2538001468623dc122943f019daeb6fce9be1 /modules/path/path.module | |
parent | 79a5700c57e8ed86b4aab66022a448df978d2e3f (diff) | |
download | brdo-a76a1e1f3f5b641663ef3d00a752ec1cbd1d4ee9.tar.gz brdo-a76a1e1f3f5b641663ef3d00a752ec1cbd1d4ee9.tar.bz2 |
- Patch 20910 by chx: centralize print theme page.
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; } /** |