Changeset 161 for branches/1.0
- Timestamp:
- 09/13/2006 01:52:38 PM (7 years ago)
- Files:
-
- 1 modified
-
branches/1.0/admin/config.php.example (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/admin/config.php.example
r34 r161 10 10 function ob_filter_path_nicer($o) 11 11 { 12 $o = str_replace("/home/", "{H}/", $o); 12 $sep = DIRECTORY_SEPARATOR; 13 $o = str_replace($_SERVER['DOCUMENT_ROOT'], "{DOCROOT}$sep", $o); 14 $xcachedir = realpath(dirname(__FILE__) . "$sep..$sep"); 15 $o = str_replace($xcachedir . $sep, "{XCache}$sep", $o); 16 if ($sep == '/') { 17 $o = str_replace("/home/", "{H}/", $o); 18 } 13 19 return $o; 14 20 }

