Changeset afe50ae in github
- Timestamp:
- May 26, 2008 6:42:20 AM (5 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- e345457
- Parents:
- c0e3583
- File:
-
- 1 edited
-
installer/index.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
installer/index.php
r47124c22 rafe50ae 1 1 <?php 2 3 2 ini_set('error_reporting', E_ALL&~E_NOTICE); 4 3 ini_set('display_errors', 1); 5 4 6 5 define('INSTALL_PATH', realpath(dirname(__FILE__) . '/../').'/'); 7 $include_path = INSTALL_PATH . 'program/lib' . PATH_SEPARATOR . INSTALL_PATH . 'program' . PATH_SEPARATOR . INSTALL_PATH . 'program/include' . PATH_SEPARATOR . ini_get('include_path'); 6 $include_path = INSTALL_PATH . 'program/lib' . PATH_SEPARATOR; 7 $include_path .= INSTALL_PATH . 'program' . PATH_SEPARATOR; 8 $include_path .= INSTALL_PATH . 'program/include' . PATH_SEPARATOR; 9 $include_path .= ini_get('include_path'); 10 8 11 set_include_path($include_path); 9 12 … … 23 26 include_once $filename. '.php'; 24 27 } 25 26 28 ?> 27 29 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
Note: See TracChangeset
for help on using the changeset viewer.
