mirror of
https://github.com/friendica/friendica
synced 2025-12-16 21:41:05 +01:00
14 lines
208 B
PHP
14 lines
208 B
PHP
|
|
<?php
|
||
|
|
include 'boot.php';
|
||
|
|
|
||
|
|
$a = new App();
|
||
|
|
|
||
|
|
$files = glob('mod/*.php');
|
||
|
|
foreach($files as $file)
|
||
|
|
include_once($file);
|
||
|
|
|
||
|
|
|
||
|
|
$files = glob('include/*.php');
|
||
|
|
foreach($files as $file)
|
||
|
|
include_once($file);
|