From 37168a1f0961a8d8cc2afb878d44cba2e1304ebf Mon Sep 17 00:00:00 2001 From: phl0 Date: Sat, 13 Dec 2025 18:09:24 +0100 Subject: [PATCH] Some explanations re multi-callbooks in sample config --- application/config/config.sample.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/application/config/config.sample.php b/application/config/config.sample.php index 40d31c7c6..40ae48586 100644 --- a/application/config/config.sample.php +++ b/application/config/config.sample.php @@ -14,7 +14,14 @@ defined('BASEPATH') OR exit('No direct script access allowed'); $config['app_name'] = 'Wavelog'; $config['directory'] = 'logbook'; -$config['callbook'] = 'hamqth'; // Options are hamqth, qrz, qrzcq or qrzru +/* +| Options are hamqth, qrz, qrzcq or qrzru +| For a single callbook configure just one value as string. Example: +| $config['callbook'] = 'hamqth'; +| This can also be set to an array of callbooks to search sequentially until a match is found. Example: +| $config['callbook'] = ['qrz', 'hamqth']; + */ +$config['callbook'] = 'hamqth'; $config['datadir'] = null; // default to install directory