aboutsummaryrefslogtreecommitdiff
path: root/start.php
blob: 44e4be0967b68f765ac31ee6d2cbe2a7832b16c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

function html5_init() {
	
	//This script must appear before any styles
	elgg_extend_view('head/metas', 'scripts/html5', 1);
	
	elgg_extend_view('css', 'html5/css');
	
	elgg_view_register_simplecache('scripts/html5');
}

register_elgg_event_handler('init', 'system', 'html5_init');