Update: 2026-05-04 20:12:58

This commit is contained in:
Hamza-Ayed
2026-05-04 20:12:58 +03:00
parent 8d499716ce
commit 3249a227d6
2 changed files with 2 additions and 2 deletions

View File

@@ -57,7 +57,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'OPTIONS') {
// 5. Security Headers
header("X-Content-Type-Options: nosniff");
header("X-Frame-Options: DENY");
header("X-Frame-Options: SAMEORIGIN");
header("X-XSS-Protection: 1; mode=block");
header("Referrer-Policy: strict-origin-when-cross-origin");
header("Strict-Transport-Security: max-age=31536000; includeSubDomains"); // I1 Fix: HSTS

View File

@@ -397,7 +397,7 @@
<!-- Left: Document Preview -->
<div class="flex-1 bg-gray-950 rounded-3xl overflow-hidden border border-gray-800 relative">
<template x-if="currentInvoice?.file_url">
<iframe :src="currentInvoice.file_url" class="w-full h-full border-0"></iframe>
<iframe :src="currentInvoice.file_url + '&token=' + token()" class="w-full h-full border-0"></iframe>
</template>
<div x-show="!currentInvoice?.file_url" class="absolute inset-0 flex items-center justify-center text-gray-600">لا يوجد ملف مرفق</div>
</div>