equal
deleted
inserted
replaced
89 require_once(ENANO_ROOT.'/includes/email.php'); |
89 require_once(ENANO_ROOT.'/includes/email.php'); |
90 require_once(ENANO_ROOT.'/includes/search.php'); |
90 require_once(ENANO_ROOT.'/includes/search.php'); |
91 require_once(ENANO_ROOT.'/includes/json.php'); |
91 require_once(ENANO_ROOT.'/includes/json.php'); |
92 require_once(ENANO_ROOT.'/includes/wikiengine/Tables.php'); |
92 require_once(ENANO_ROOT.'/includes/wikiengine/Tables.php'); |
93 require_once(ENANO_ROOT.'/includes/pageprocess.php'); |
93 require_once(ENANO_ROOT.'/includes/pageprocess.php'); |
|
94 require_once(ENANO_ROOT.'/includes/tagcloud.php'); |
94 |
95 |
95 strip_magic_quotes_gpc(); |
96 strip_magic_quotes_gpc(); |
96 |
97 |
97 // Enano has five parts: the database abstraction layer (DBAL), the session manager, the path/URL manager, the template engine, and the plugin manager. |
98 // Enano has five parts: the database abstraction layer (DBAL), the session manager, the path/URL manager, the template engine, and the plugin manager. |
98 // Each part has its own class and a global var; nearly all Enano functions are handled by one of these five components. |
99 // Each part has its own class and a global var; nearly all Enano functions are handled by one of these five components. |
170 table_prefix.'groups', |
171 table_prefix.'groups', |
171 table_prefix.'group_members', |
172 table_prefix.'group_members', |
172 table_prefix.'acl', |
173 table_prefix.'acl', |
173 table_prefix.'search_cache', |
174 table_prefix.'search_cache', |
174 table_prefix.'page_groups', |
175 table_prefix.'page_groups', |
175 table_prefix.'page_group_members' |
176 table_prefix.'page_group_members', |
|
177 table_prefix.'tags' |
176 ); |
178 ); |
177 |
179 |
178 dc_here('common: initializing base classes'); |
180 dc_here('common: initializing base classes'); |
179 $plugins = new pluginLoader(); |
181 $plugins = new pluginLoader(); |
180 |
182 |