ok, merci quand mêmepierredu wrote: Wed Aug 31, 2022 6:02 am It would be a major revision.
I don't have enough time for this.
That's what I thought also... Although I was using test user permissions logged in as admin.pierredu wrote: Fri Jan 06, 2023 10:26 am Can you give me more explanations? I don't see how a guest could access the admin control panel.
You currently have the permissions from Anonymous. You are able to browse the board with this user’s permissions, but not access the administration control panel since admin permissions were not transferred. You can revert to your permission set at any time.
Code: Select all
if (!($part[0] == '<' && $parts[$index + 1][0] == '>') &&
!($part[0] == '[' && $parts[$index + 1][0] == ']') &&
empty($img) && empty($code) && empty($alink) && empty($ulink) && empty($script)) {
if ($this->config['lmdi_autolinks'] == 2) {
// $part = preg_replace($terms, $furls, $part);
$nbt = count($terms);
for ($i = 0; $i < $nbt; $i++) {
if (strcmp($fterms[$i], $part) === 0) {
$part = str_replace($furls[$i], $urls[$i] . $fterms[$i], $part);
}
// $part = str_replace($furls[$i], $urls[$i] . $fterms[$i], $part);
}
} else {
$part = preg_replace($terms, $urls, $part);
}
$parts[$index] = $part;
}