]> git.mxchange.org Git - friendica.git/blob - mod/view.php
Merge pull request #188 from fabrixxm/master
[friendica.git] / mod / view.php
1 <?php
2 /**
3  * load view/theme/$current_theme/style.php with friendica contex
4  */
5  
6 function view_init($a){
7         header("Content-Type: text/css");
8                 
9         if ($a->argc == 4){
10                 $theme = $a->argv[2];
11                 $THEMEPATH = "view/theme/$theme";
12                 require_once("view/theme/$theme/style.php");
13         }
14         
15         killme();
16 }