Friendica Communications Platform
(please note that this is a clone of the repository at github, issues are handled there)
https://friendi.ca
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
507 B
22 lines
507 B
<?php |
|
// 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. |
|
|
|
include 'boot.php'; |
|
|
|
error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE); |
|
ini_set('display_errors', '1'); |
|
ini_set('log_errors','0'); |
|
|
|
|
|
$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);
|
|
|