phpldapadmin/htdocs/common.php

17 lines
246 B
PHP
Raw Permalink Normal View History

<?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';
2019-02-12 14:52:01 -05:00