Established new hooks class convention.
[fa-stable.git] / includes / session.inc
index 72ff7cdb129d9c8ed128ac4f3dd03741a6838919..612957ae2f8777ca05aa413b090387f559686d77 100644 (file)
@@ -213,7 +213,10 @@ $Hooks = array();
 if (file_exists($path_to_root . "/lang/".$_SESSION['language']->code."/locale.inc"))
 {
        include_once($path_to_root . "/lang/".$_SESSION['language']->code."/locale.inc");
-       $Hooks[] = new Hooks();
+       $code = $_SESSION['language']->code;
+       $hook_class = 'hooks_'.$code;
+       $Hooks[$code] = new $hook_class;
+       unset($code, $hook_class);
 }
 
 include_once($path_to_root . "/includes/access_levels.inc");