
noreply at mythtv
Jun 2, 2012, 8:32 AM
Post #1 of 5
(79 views)
Permalink
|
|
Ticket #10791: In mythweb.php, ':' should be changed to PATH_SEPARATOR
|
|
#10791: In mythweb.php, ':' should be changed to PATH_SEPARATOR --------------------------------------+------------------------ Reporter: karog <mythtv@…> | Owner: kormoc Type: Bug Report - General | Status: new Priority: minor | Milestone: unknown Component: Plugin - MythWeb | Version: 0.25-fixes Severity: low | Keywords: Ticket locked: 0 | --------------------------------------+------------------------ 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]); }}} -- Ticket URL: <http://code.mythtv.org/trac/ticket/10791> MythTV <http://code.mythtv.org/trac> MythTV Media Center _______________________________________________ mythtv-commits mailing list mythtv-commits [at] mythtv http://www.mythtv.org/mailman/listinfo/mythtv-commits
|