From 46bd9f7c2de9c2b53966881e68fb9098bf86d092 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 16 Oct 2005 19:13:16 +0000 Subject: [PATCH] Pass $this when we're instantiating framework modules --- kernel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel.php b/kernel.php index 7cf60e5..455902e 100644 --- a/kernel.php +++ b/kernel.php @@ -252,7 +252,7 @@ class Shared_Object_Framework trigger_error('Cannot instantiate framework `' . $framework . '` into `' . $asobject . '`', E_USER_ERROR); } - $this->$asobject = new $framework(); + $this->$asobject = new $framework($this); if ($globalize) { -- 2.43.5