475765e31f
Add an explicit template renderer with HTML views and partials for the app, bootstrap, package, and catalog pages. Move shared reporting setup into config/reporting.php and relocate stylesheet assets under css/.
10 lines
205 B
PHP
10 lines
205 B
PHP
<?php
|
|
/*
|
|
* Shared runtime error reporting settings for public entrypoints.
|
|
*/
|
|
|
|
ini_set('display_errors', '1');
|
|
ini_set('display_startup_errors', '1');
|
|
ini_set('log_errors', '1');
|
|
error_reporting(E_ALL);
|