257 } |
257 } |
258 $row = $db->fetchrow(); |
258 $row = $db->fetchrow(); |
259 setConfig('default_language', $row['lang_id']); |
259 setConfig('default_language', $row['lang_id']); |
260 } |
260 } |
261 |
261 |
262 // Our list of tables included in Enano |
|
263 $system_table_list = Array( |
|
264 table_prefix.'categories', |
|
265 table_prefix.'comments', |
|
266 table_prefix.'config', |
|
267 table_prefix.'logs', |
|
268 table_prefix.'page_text', |
|
269 table_prefix.'session_keys', |
|
270 table_prefix.'pages', |
|
271 table_prefix.'users', |
|
272 table_prefix.'users_extra', |
|
273 table_prefix.'themes', |
|
274 table_prefix.'buddies', |
|
275 table_prefix.'banlist', |
|
276 table_prefix.'files', |
|
277 table_prefix.'privmsgs', |
|
278 table_prefix.'sidebar', |
|
279 table_prefix.'hits', |
|
280 table_prefix.'groups', |
|
281 table_prefix.'group_members', |
|
282 table_prefix.'acl', |
|
283 table_prefix.'page_groups', |
|
284 table_prefix.'page_group_members', |
|
285 table_prefix.'tags', |
|
286 table_prefix.'language', |
|
287 table_prefix.'language_strings', |
|
288 table_prefix.'lockout', |
|
289 table_prefix.'search_index' |
|
290 ); |
|
291 |
|
292 // Load plugin manager |
262 // Load plugin manager |
293 $plugins = new pluginLoader(); |
263 $plugins = new pluginLoader(); |
294 |
264 |
295 // |
265 // |
296 // Mainstream API boot-up |
266 // Mainstream API boot-up |