- Bugfix: the comment module has a help function but it wasn't linked to.

4.0.x
Dries Buytaert 2002-06-09 13:52:08 +00:00
parent 28a7179a22
commit ca9fc85e4b
2 changed files with 8 additions and 2 deletions

View File

@ -763,9 +763,12 @@ function comment_admin() {
if (user_access("administer comments")) {
print "<small>". la(t("overview"), array("mod" => "comment")) ." | ". la(t("search comment"), array("mod" => "comment", "op" => "search")) ."</small><hr />\n";
print "<small>". la(t("overview"), array("mod" => "comment")) ." | ". la(t("search comment"), array("mod" => "comment", "op" => "search")) ." | ". la(t("help"), array("mod" => "comment", "op" => "help")) ."</small><hr />\n";
switch ($op) {
case "help":
print comment_help();
break;
case "edit":
print comment_admin_edit($id);
break;

View File

@ -763,9 +763,12 @@ function comment_admin() {
if (user_access("administer comments")) {
print "<small>". la(t("overview"), array("mod" => "comment")) ." | ". la(t("search comment"), array("mod" => "comment", "op" => "search")) ."</small><hr />\n";
print "<small>". la(t("overview"), array("mod" => "comment")) ." | ". la(t("search comment"), array("mod" => "comment", "op" => "search")) ." | ". la(t("help"), array("mod" => "comment", "op" => "help")) ."</small><hr />\n";
switch ($op) {
case "help":
print comment_help();
break;
case "edit":
print comment_admin_edit($id);
break;