15 lines
242 B
PHP
15 lines
242 B
PHP
|
<?php
|
||
|
/**
|
||
|
* This script provides a convienent method to call the proper common.php
|
||
|
*
|
||
|
* @package phpLDAPadmin
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
*/
|
||
|
|
||
|
if (! defined('LIBDIR'))
|
||
|
define('LIBDIR',sprintf('%s/',realpath('../lib/')));
|
||
|
require_once LIBDIR.'common.php';
|
||
|
?>
|