Search found 1 match

by ionee
Sat Jul 18, 2026 11:11 am
Forum: Plugins
Topic: 🔒 Secure Access+
Replies: 10
Views: 33039

Re: 🔒 Secure Access+

Claude was able to fix the Error 500. The fix is:

Original

foreach ($this->dbFields as $key => $value) {
$value = Sanitize::html($value); // ← htmlspecialchars([]) = TypeError
settype($value, gettype($this->dbFields[$key]));
$this->db[$key] = $value;
}

New

foreach ($this->dbFields as $key ...