mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-06-25 16:19:19 +02:00
The main GET handler in partage/index.php always showed the password gate for links with password_hash set, even after successful verification. The session flag share_verified_<slug> was being set by requirePasswordGate() but never checked when deciding whether to re-show the gate. Added a check: if the session flag is already set, skip the gate and render the form directly. Also added error_log() calls throughout the password flow to help diagnose future issues.