check for style.php existence before inclusion

This commit is contained in:
friendica 2012-04-01 16:21:55 -07:00
parent 2589feef70
commit f95db4382e
1 changed files with 2 additions and 1 deletions

View File

@ -9,7 +9,8 @@ function view_init($a){
if ($a->argc == 4){ if ($a->argc == 4){
$theme = $a->argv[2]; $theme = $a->argv[2];
$THEMEPATH = "view/theme/$theme"; $THEMEPATH = "view/theme/$theme";
require_once("view/theme/$theme/style.php"); if(file_exists("view/theme/$theme/style.php"))
require_once("view/theme/$theme/style.php");
} }
killme(); killme();