Value of constant should also be used in text message

This commit is contained in:
phl0
2025-01-29 09:25:28 +01:00
parent 0c1f40c3bc
commit d5892e47a3
2 changed files with 4 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
class QSO extends CI_Controller {
const LAST_QSOS_COUNT = 5; // max number of most recent qsos to be displayed on a qso page
const LAST_QSOS_COUNT = 5; // max number of most recent qsos to be displayed on a qso page
function __construct()
{
@@ -86,6 +86,8 @@ class QSO extends CI_Controller {
$data['user_dok_to_qso_tab'] = 0;
}
$data['qso_count'] = self::LAST_QSOS_COUNT;
$this->load->library('form_validation');
$this->form_validation->set_rules('start_date', 'Date', 'required');