summaryrefslogtreecommitdiff
path: root/modules/search.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-09-18 18:39:15 +0000
committerDries Buytaert <dries@buytaert.net>2001-09-18 18:39:15 +0000
commitca85a56f1b4db802a72b4def5b20ba9dafb5e0e2 (patch)
treecf3231d532cd1ceeb6dfb259c52ee152fc66fd7b /modules/search.module
parentc5a349ca5140dec738903afe7f6e0deda604d013 (diff)
downloadbrdo-ca85a56f1b4db802a72b4def5b20ba9dafb5e0e2.tar.gz
brdo-ca85a56f1b4db802a72b4def5b20ba9dafb5e0e2.tar.bz2
- Fixed 2 typos in the user module. Thanks Axel and Remco.
- Applied (modified versions of) Alexander's patches on the development branch.
Diffstat (limited to 'modules/search.module')
-rw-r--r--modules/search.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/search.module b/modules/search.module
index 7beb1e74c..bb74db3c2 100644
--- a/modules/search.module
+++ b/modules/search.module
@@ -6,7 +6,7 @@ function search_perm() {
function search_link($type) {
if ($type == "page" && user_access("search content")) {
- $links[] = "<a href=\"module.php?mod=search\">search</a>";
+ $links[] = "<a href=\"module.php?mod=search\">". t("search") ."</a>";
}
return $links ? $links : array();
@@ -49,7 +49,7 @@ function search_page() {
}
else {
$theme->header();
- $theme->box("Access denied", message_access());
+ $theme->box(t("Access denied"), message_access());
$theme->footer();
}
}