diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2001-05-14 21:28:35 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2001-05-14 21:28:35 +0000 |
commit | 9164b903a76e3b4c31c08654bd99f245a0e2bf8d (patch) | |
tree | 1a0b4b2f47f19103ed430da556a68781871077c7 | |
parent | 9790dc105c59ec3f7ccc8b7c36513b0014e9a5f4 (diff) | |
download | brdo-9164b903a76e3b4c31c08654bd99f245a0e2bf8d.tar.gz brdo-9164b903a76e3b4c31c08654bd99f245a0e2bf8d.tar.bz2 |
Typo
-rw-r--r-- | modules/structure.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/structure.module b/modules/structure.module index e62571a79..050f10d36 100644 --- a/modules/structure.module +++ b/modules/structure.module @@ -60,7 +60,7 @@ function topic_form($edit = array()) { $form .= form_textfield(t("Name"), "name", $edit[name], 30, 55, t("A unique name for this topic like 'science', 'internet', 'culture', etc.")); $form .= form_select(t("Parent"), "pid", $edit[pid], $topics, t("The parent topic this topic belongs in.")); - $form .= form_textfield("Moderate", "moderate", $edit[moderate], 35, 255, t("Provide a comma-seperated list of the moderators their usernames.")); + $form .= form_textfield("Moderate", "moderate", $edit[moderate], 35, 255, t("Provide a comma-seperated list of the moderators' usernames.")); if ($edit[tid]) { $form .= form_hidden("tid", $edit[tid]); |