2019-02-08 13:44:52 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* This script provides a convienent method to call the proper common.php
|
|
|
|
*
|
|
|
|
* @package phpLDAPadmin
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (! defined('LIBDIR'))
|
2019-02-12 14:57:50 -05:00
|
|
|
{
|
|
|
|
define('LIBDIR', sprintf('%s/', realpath('../lib/')));
|
|
|
|
}
|
2019-02-08 13:44:52 -05:00
|
|
|
require_once LIBDIR.'common.php';
|
2019-02-12 14:52:01 -05:00
|
|
|
|