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: karog <mythtv@…> 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)

0002-change-to-PATH_SEPARATOR-in-mythweb.php.patch (998 bytes ) - added by dekarl@… 14 years ago.
suggest fix, ready to commit on master

Download all attachments as: .zip

Change History (5)

by dekarl@…, 14 years ago

suggest fix, ready to commit on master

comment:1 by beirdo, 14 years ago

Type: Bug Report - GeneralPatch - Bug Fix

comment:2 by Karl Dietz <dekarl@…>, 14 years ago

Resolution: fixed
Status: newclosed

In f9f5a1f43f2ddfeaa038054226f6ac0aa0b973e6/mythweb:

Error: Processor CommitTicketReference failed
GIT backend not available

comment:3 by Karl Dietz <dekarl@…>, 14 years ago

In f82ca9521775edbbc53caf0f40f7bc183732dcc2/mythweb:

Error: Processor CommitTicketReference failed
GIT backend not available

comment:4 by Raymond Wagner, 14 years ago

Milestone: unknown0.26.1
Note: See TracTickets for help on using tickets.