I have A problem accessing the account section getting this error:
{
return $this->encoding;
}
/**
* Escape a string for the HTML Body context where there are very few characters
* of special meaning. Internally this will use htmlspecialchars().
*
* @return string
*/
public function escapeHtml(string $string)
{
return htmlspecialchars($string, $this->htmlSpecialCharsFlags, $this->encoding);
}
/**
* Escape a string for the HTML Attribute context. We use an extended set of characters
* to escape that are not covered by htmlspecialchars() to cover cases where an attribute
* might be unquoted or quoted illegally (e.g. backticks are valid quotes for IE).
*
* @return string
*/
public function escapeHtmlAttr(string $string)
{
$string = $this->toUtf8($string);
if ($string === '' || ctype_digit($string)) {
return $string;
}
$result = preg_replace_callback('/[^a-z0-9,\.\-_]/iSu', $this->htmlAttrMatcher, $string);
return $this->fromUtf8($result);
as well as i had a blog running a while ago which wasnt working after a while, i updatet kirby and so on but somehow my blog.yml is not processed and i have no clue why. i think all problems satrted when i was implementing the multilanguage option but that also happened a while ago. Would be nice if someone could help or tell me which information is needed to solve the problems. rest of the site is working wout any problems. additinal info, im using the same blog structure on a another system which works wout any problems, only difference no multilanguage implemented