From 61be9586c496b639e97a47c2c56429badeec39d9 Mon Sep 17 00:00:00 2001 From: skeeter Date: Sat, 30 Dec 2000 21:39:16 +0000 Subject: [PATCH] fix for missing hooks call in sync() --- phpgwapi/inc/phpgw.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/phpgw.inc.php b/phpgwapi/inc/phpgw.inc.php index 076f1a18f5..06ba116f94 100644 --- a/phpgwapi/inc/phpgw.inc.php +++ b/phpgwapi/inc/phpgw.inc.php @@ -163,6 +163,7 @@ * Continue adding the classes * \**************************************************************************/ $this->common = new common; + $this->hooks = new hooks; /* Load selected authentication class */ if (empty($phpgw_info["server"]["auth_type"])){$phpgw_info["server"]["auth_type"] = "sql";} @@ -196,7 +197,6 @@ } $this->translation = new translation; $this->acl = new acl; - $this->hooks = new hooks; $sep = filesystem_separator(); $template_root = $this->common->get_tpl_dir();