diff --git a/core/class/declarationtva_pdf.class.php b/core/class/declarationtva_pdf.class.php index 102e233..e6d375e 100644 --- a/core/class/declarationtva_pdf.class.php +++ b/core/class/declarationtva_pdf.class.php @@ -1543,7 +1543,7 @@ class DeclarationTVA_PDF if (file_exists($local_manifest)) { $manifest_content = file_get_contents($local_manifest); // Set a note that we're using local manifest - $update_info['error'] = 'Using local manifest (Gitea server not accessible)'; + $update_info['error'] = 'Using local manifest (Gitea server not accessible - repository may be private or server configuration issue)'; } if ($manifest_content === false) { $update_info['error'] = 'Failed to fetch manifest from Gitea and local file not found'; @@ -1603,7 +1603,7 @@ class DeclarationTVA_PDF if (file_exists($local_template)) { $template_content = file_get_contents($local_template); // Note that we're using local template - $this->error = 'Using local template (Gitea server not accessible)'; + $this->error = 'Using local template (Gitea server not accessible - repository may be private or server configuration issue)'; } if ($template_content === false) { $this->error = 'Failed to download template from Gitea and local file not found';