[mythtv-commits] Ticket #10791: In mythweb.php, ':' should be changed to PATH_SEPARATOR

MythTV noreply at mythtv.org
Sat Jun 2 15:32:54 UTC 2012


#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


More information about the mythtv-commits mailing list