Opened 14 years ago
Closed 14 years ago
Last modified 14 years ago
#10791 closed Patch - Bug Fix (fixed)
In mythweb.php, ':' should be changed to PATH_SEPARATOR
| Reported by: | Owned by: | Rob Smith | |
|---|---|---|---|
| Priority: | minor | Milestone: | 0.26.1 |
| Component: | Plugin - MythWeb | Version: | 0.25-fixes |
| Severity: | low | Keywords: | |
| Cc: | Ticket locked: | no |
Description
In mythweb.php, include_path is set numerous times using PATH_SEPARATOR except for one case where a literal ':' is used.
ini_set('include_path', ini_get('include_path').':'.modules_path.'/'.$Path[0]);
should be changed to
ini_set('include_path', ini_get('include_path').PATH_SEPARATOR.modules_path.'/'.$Path[0]);
Attachments (1)
Change History (5)
by , 14 years ago
| Attachment: | 0002-change-to-PATH_SEPARATOR-in-mythweb.php.patch added |
|---|
comment:1 by , 14 years ago
| Type: | Bug Report - General → Patch - Bug Fix |
|---|
comment:2 by , 14 years ago
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
comment:4 by , 14 years ago
| Milestone: | unknown → 0.26.1 |
|---|
Note:
See TracTickets
for help on using tickets.

suggest fix, ready to commit on master