mirror of https://github.com/friendica/friendica
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
384 B
PHTML
18 lines
384 B
PHTML
13 years ago
|
<?php
|
||
13 years ago
|
// Tired of chasing typos and finding them after a commit.
|
||
|
// Run this from cmdline in basedir and quickly see if we've
|
||
|
// got any parse errors in our application files.
|
||
|
|
||
13 years ago
|
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);
|