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