summaryrefslogtreecommitdiffstats
path: root/system/codeigniter
diff options
context:
space:
mode:
authoradmin <devnull@localhost>2006-09-06 04:48:47 +0200
committeradmin <devnull@localhost>2006-09-06 04:48:47 +0200
commiteb567c702cda744b53be22206c55a960a36cb678 (patch)
tree3a92cec82d3cb05c5a0413d9d78fdd83c34c6204 /system/codeigniter
parenta16e88387eb0b0d56d7fab44874e63fdead19da4 (diff)
Diffstat (limited to 'system/codeigniter')
-rw-r--r--system/codeigniter/CodeIgniter.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/system/codeigniter/CodeIgniter.php b/system/codeigniter/CodeIgniter.php
index 5c3d19b76..e09bf3deb 100644
--- a/system/codeigniter/CodeIgniter.php
+++ b/system/codeigniter/CodeIgniter.php
@@ -188,6 +188,16 @@ if ($RTR->scaffolding_request === TRUE)
}
else
{
+ /*
+ * ------------------------------------------------------
+ * Is there a "post_controller_constructor" hook?
+ * ------------------------------------------------------
+ */
+ if ($EXT->_hook_exists('post_controller_constructor'))
+ {
+ $EXT->_call_hook('post_controller_constructor');
+ }
+
if ($method == $class)
{
$method = 'index';