mirror of
https://github.com/friendica/friendica
synced 2024-11-13 07:13:44 +01:00
check for style.php existence before inclusion
This commit is contained in:
parent
2589feef70
commit
f95db4382e
|
@ -9,7 +9,8 @@ function view_init($a){
|
|||
if ($a->argc == 4){
|
||||
$theme = $a->argv[2];
|
||||
$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();
|
||||
|
|
Loading…
Reference in a new issue