ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
inc.get_pear.php
Go to the documentation of this file.
1<?php
2
3// First use local pear
4set_include_path(
5 "./Services/PEAR/lib".PATH_SEPARATOR.
6 './Services/OpenId/lib'.PATH_SEPARATOR.
7 ini_get('include_path'));
8// look for embedded pear
9if (is_dir("./pear"))
10{
11 set_include_path("./pear".PATH_SEPARATOR.ini_get('include_path'));
12}
13?>