diff --git a/doc/config.html b/doc/config.html index 567d51c7..51118562 100755 --- a/doc/config.html +++ b/doc/config.html @@ -169,7 +169,7 @@ from each message. The option Page title in the [gl section is used for the logbook selection page.

-

  • Summary page title = <string> +
  • List page title = <string>
    The same for the summary or find result page. This may include substitutions as well, although attribute substitutions make no sense here, since the summary page may contain many messages diff --git a/src/elogd.c b/src/elogd.c index ea147fb1..2d333253 100755 --- a/src/elogd.c +++ b/src/elogd.c @@ -6,6 +6,9 @@ Contents: Web server program for Electronic Logbook ELOG $Log$ + Revision 1.725 2005/07/26 18:11:06 ritt + Changed 'summary page title' to 'list page title' + Revision 1.724 2005/07/26 09:55:43 ritt Changed 'rss feed' to 'alternate' @@ -17375,7 +17378,7 @@ void show_elog_list(LOGBOOK * lbs, INT past_n, INT last_n, INT page_n, char *inf /*---- header ----*/ - if (getcfg(lbs->name, "Summary Page Title", str, sizeof(str))) { + if (getcfg(lbs->name, "List Page Title", str, sizeof(str))) { i = build_subst_list(lbs, (char (*)[NAME_LENGTH]) slist, (char (*)[NAME_LENGTH]) svalue, NULL, TRUE); strsubst(str, sizeof(str), (char (*)[NAME_LENGTH]) slist, (char (*)[NAME_LENGTH]) svalue, i); strip_html(str);