You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get the following error after changing the content of a page, pressing F5 to refresh twice fixes it.
PHP Warning: Undefined array key "metadata" in C:\inetpub\wwwroot\manual\lib\plugins\pagetitle\syntax\decorative.php on line 146
PHP Warning: Undefined array key "xhtml" in C:\inetpub\wwwroot\manual\lib\plugins\pagetitle\syntax\decorative.php on line 146
Fixed by adding the following at the top of the render() function in decorative.php:
$counter['metadata'] = 0;
$counter['xhtml'] = 0;
The text was updated successfully, but these errors were encountered:
I get the following error after changing the content of a page, pressing F5 to refresh twice fixes it.
Fixed by adding the following at the top of the
render()
function indecorative.php
:The text was updated successfully, but these errors were encountered: