Closed ahwayakchih closed 13 years ago
As noticed by Solutions-Nitriques in AjaxPage on the frontend thread, Better Forms creates errors on AjaxPage. It probably should check if Page is of HTMLPage class, e.g.,
AjaxPage
HTMLPage
public function __appendAssets($context) { $page = $context['parent']->Page; if(!($page instanceof HTMLPage)) return; // [...] }
Thanks @ahwayakchih, I'll fix that tomorrow or later tonight. :)
Fixed.
As noticed by Solutions-Nitriques in AjaxPage on the frontend thread, Better Forms creates errors on
AjaxPage
. It probably should check if Page is ofHTMLPage
class, e.g.,