'Full_Background', 'parent' => 'default', 'local_head' => 'local_head.tpl', ); load_language('theme.lang', PHPWG_THEMES_PATH.'Full_Background/'); add_event_handler('loc_begin_index', 'modify_nb_thumbnail_page'); if(!function_exists('modify_nb_thumbnail_page')) { function modify_nb_thumbnail_page() { global $user, $page, $conf; $user['nb_image_page']=999; $page['nb_image_page']=999; $conf['nb_categories_page']=999; } } add_event_handler('get_categories_menu_sql_where', 'mic_get_categories_menu_sql_where', EVENT_HANDLER_PRIORITY_NEUTRAL, 3 ); if(!function_exists('mic_get_categories_menu_sql_where')) { function mic_get_categories_menu_sql_where($where){ global $page; $where = '1'; return $where; } } add_event_handler('allow_increment_element_hit_count', 'stop_increment'); function stop_increment(){ } ?>