diff --git a/doc/config.html b/doc/config.html
index d6fc803c..516c86f0 100755
--- a/doc/config.html
+++ b/doc/config.html
@@ -232,13 +232,6 @@ Welcome title = <img src="welcome.jpg"><p><font size=5 color=whit
elogd can be used.
- Subscription columns = <number>
- The config page shows a list of all logbooks one can subscribe to.
- When the list is very long it might be recommended to organize it in
- columns. This option allows to specify the numbers of columns to use
- (default is 1 column: a simple list).
-
-
Guest Selection page = <file>
The same for installations which have a global password file. This
means that the logbook selection page is also password protected. It
diff --git a/src/elogd.c b/src/elogd.c
index c3636632..4daab163 100755
--- a/src/elogd.c
+++ b/src/elogd.c
@@ -13973,11 +13973,9 @@ void show_config_page(LOGBOOK * lbs)
}
if (n > 0) {
- if (getcfg(lbs->name, "Subscription columns", str, sizeof(str)))
- cols = atoi(str);
- else
- cols = 1;
-
+ for (i = 0; lb_list[i].name[0]; i++) {}
+ j = (int) (i / 16) + 1;
+ cols = ((j>5)?5:j);
rsprintf("%s:\n", loc("Subscribe to logbooks"));
rsprintf(" \n",
|