From: Alan Date: Mon, 26 Sep 2022 06:42:52 +0000 (+0800) Subject: add roo so we can show errors X-Git-Url: http://git.roojs.org/?p=Pman.Base;a=commitdiff_plain;h=438023dd0401d612b65b977bf30efb3dbe9eadc3 add roo so we can show errors --- diff --git a/Pman.php b/Pman.php index 7c5c906..f8f9ab5 100644 --- a/Pman.php +++ b/Pman.php @@ -794,8 +794,10 @@ class Pman extends HTML_FlexyFramework_Page continue; } $this->outputCSSDir("Pman/$mod","*.css"); + $this->outputSCSS($mod); + } return ''; // needs to return something as we output it.. diff --git a/Pman/Roo.php b/Pman/Roo.php index a9871a0..b298e42 100644 --- a/Pman/Roo.php +++ b/Pman/Roo.php @@ -343,7 +343,7 @@ class Pman_Roo extends Pman // filter results, and add any data that is needed... if (method_exists($x,'postListFilter')) { - $ret = $x->postListFilter($ret, $this->authUser, $_REQUEST); + $ret = $x->postListFilter($ret, $this->authUser, $_REQUEST, $roo); }