From 71d861f8b7f47d1ee264d42b0bbf887f93c3cb58 Mon Sep 17 00:00:00 2001 From: int2001 Date: Fri, 28 Jul 2023 06:49:50 +0000 Subject: [PATCH] Take care of max-lbl-count --- application/controllers/Labels.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/controllers/Labels.php b/application/controllers/Labels.php index a08d2870..775cc840 100644 --- a/application/controllers/Labels.php +++ b/application/controllers/Labels.php @@ -228,7 +228,7 @@ class Labels extends CI_Controller { $count_qso++; if($count_qso == $qso_per_label){ - generateLabel($pdf, $current_callsign, $tableData,$count_qso,$qso); + $this->generateLabel($pdf, $current_callsign, $tableData,$count_qso,$qso); $tableData = []; // reset the data $count_qso = 0; // reset the counter }