Bug Report #2131
Kodoc::classes() doesn't work with DIRECTORY_SEPARATOR === '\'
| Status: | Closed | Start date: | 09/17/2009 | |
|---|---|---|---|---|
| Priority: | High | Due date: | ||
| Assignee: | % Done: | 0% |
||
| Category: | Modules:Userguide | |||
| Target version: | v3.0.1 | |||
| Resolution: | fixed | Points: |
Description
Kohana/kodoc.php, line №99
Replace:
$class = str_replace('/', '_', strtolower($class));
with:
$class = str_replace(array('\','/'), '_', strtolower($class));
History
Updated by Ivan Brotkin over 2 years ago
Update:$class = str_replace(array('\\','/'), '_', strtolower($class));
Updated by Woody Gilk over 2 years ago
- Category set to Modules:Userguide
- Target version changed from v3.0.0 to v3.0.1
Updated by Woody Gilk over 2 years ago
- Status changed from New to Closed
- Resolution set to fixed