summaryrefslogtreecommitdiff
path: root/modules/jabber.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-10-09 18:53:22 +0000
committerDries Buytaert <dries@buytaert.net>2003-10-09 18:53:22 +0000
commit1a5fcacdd9d6831a01d8eab8f49674c59c25cb80 (patch)
tree058d3837d5609f0e26442f38b3e35fe7305d1d36 /modules/jabber.module
parent928527538757cffbaaee811d06ae7b6a99f2afe4 (diff)
downloadbrdo-1a5fcacdd9d6831a01d8eab8f49674c59c25cb80.tar.gz
brdo-1a5fcacdd9d6831a01d8eab8f49674c59c25cb80.tar.bz2
- Committed part 3 of Michael's help system improvements: removed the $help
parameter from the menu() function.
Diffstat (limited to 'modules/jabber.module')
-rw-r--r--modules/jabber.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/jabber.module b/modules/jabber.module
index 7d31bf17b..67b6d483a 100644
--- a/modules/jabber.module
+++ b/modules/jabber.module
@@ -9,7 +9,7 @@ function jabber_help($section) {
$output = t("Enables login with Jabber ID and password.");
break;
- case 'user/help':
+ case 'user/help#jabber':
$site = variable_get("site_name", "this web site");
$output = "<p>%jabber is an %opensource instant messaging system designed to give the power of choice and freedom back to the users of instant messaging. Not only does Jabber allow its users to use (and create) clients for numerous platforms, but it allows people to communicate to whomever they want in the way which is most convenient for them.</p>";
@@ -163,7 +163,7 @@ function jabber_auth($username, $password, $server) {
function jabber_page() {
theme("header");
- theme("box", "Jabber", jabber_help("user/help"));
+ theme("box", "Jabber", jabber_help("user/help#jabber"));
theme("footer");
}