Select Git revision
config.inc.php
config.inc.php 387 B
<?php
ini_set('display_errors',false);
// Sample configuration file for the ucomm webforms project
set_include_path(dirname(__FILE__).'/lib/php/'.PATH_SEPARATOR.get_include_path());
function myautoload($class)
{
$file = str_replace('_', '/', $class).'.php';
require_once $file;
}
spl_autoload_register('myautoload');
require_once '../../../lib/php/UNL/WDN/Emailer/Main.php';