aboutsummaryrefslogtreecommitdiffstats
path: root/mod/view.php
blob: 15b3733b3fc974f45dcb21d2c2bec7a3728b6ef3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
/**
 * load view/theme/$current_theme/style.php with friendica contex
 */
 
function view_init($a){
	header("Content-Type: text/css");
		
	if ($a->argc == 4){
		$theme = $a->argv[2];
		$THEMEPATH = "view/theme/$theme";
		if(file_exists("view/theme/$theme/style.php"))
			require_once("view/theme/$theme/style.php");
	}
	
	killme();
}