- Fix: Notifiable-Trait zum User-Model hinzugefuegt (behebt notify()-500er) - Installer: SMTP-Verbindungstest mit EsmtpTransport + Ueberspringen-Link - Admin: Neuer E-Mail-Tab mit SMTP-Konfiguration + Verbindungstest - Admin: Lazy Quill-Initialisierung (nur sichtbare Locale wird geladen) - Uebersetzungen: 17 neue Mail-Keys in allen 6 Sprachen Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
416 B
PHP
Executable File
17 lines
416 B
PHP
Executable File
<?php
|
|
|
|
class HTMLPurifier_AttrDef_HTML_ContentEditable extends HTMLPurifier_AttrDef
|
|
{
|
|
public function validate($string, $config, $context)
|
|
{
|
|
$allowed = array('false');
|
|
if ($config->get('HTML.Trusted')) {
|
|
$allowed = array('', 'true', 'false');
|
|
}
|
|
|
|
$enum = new HTMLPurifier_AttrDef_Enum($allowed);
|
|
|
|
return $enum->validate($string, $config, $context);
|
|
}
|
|
}
|