diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-09-19 07:41:55 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-09-19 07:41:55 +0000 |
commit | 2fbc7fcf27b34445b7d0714f22a6e3e7f52d2389 (patch) | |
tree | 2035e2cd3eaff49f7179cb7b05bf9fe31dcc634d /modules/search | |
parent | e4695fd5edd0d2da9f92845ea3868bb03e75f630 (diff) | |
download | brdo-2fbc7fcf27b34445b7d0714f22a6e3e7f52d2389.tar.gz brdo-2fbc7fcf27b34445b7d0714f22a6e3e7f52d2389.tar.bz2 |
- Committed a partial administration page integration patch.
Diffstat (limited to 'modules/search')
-rw-r--r-- | modules/search/search.module | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/search/search.module b/modules/search/search.module index 3110052cf..3c98d4cc5 100644 --- a/modules/search/search.module +++ b/modules/search/search.module @@ -74,9 +74,10 @@ function search_admin() { if (user_access("administer search")) { if ($op == "reindex") { search_invalidate(); - print t("index invalidated") ."<br />\n"; + $output = t("index invalidated") ."<br />\n"; search_cron(); - print t("index recreated") ."<br /><hr />\n"; + $output .= t("index recreated") ."<br /><hr />\n"; + return $output; } } } |