[mythtv-commits] Ticket #10504: mythweb incomatible with PHP 5.4.0 and later ( Call-time pass-by-reference)
MythTV
noreply at mythtv.org
Mon May 14 12:39:45 UTC 2012
#10504: mythweb incomatible with PHP 5.4.0 and later ( Call-time pass-by-reference)
-------------------------------------------------+-------------------------
Reporter: billyx@… | Owner: kormoc
Type: Bug Report - General | Status: new
Priority: minor | Milestone:
Component: Plugin - MythWeb | Version: Master
Severity: medium | Head
Keywords: Call-time pass-by-reference PHP | Resolution:
5.4.0 | Ticket locked: 0
-------------------------------------------------+-------------------------
Comment (by bnitkin@…):
In MythTV .25-3, just removing the ampersand from line 50 of
/usr/share/mythtv/bindings/php/MythBase.php fixed the white screen of
death.
I also disabled the JSON extention in php.ini - not sure if that's an Arch
Linux thing or a general issue.
{{{
Cache::setObject($this->cacheKey, &$this, $this->cacheLifetime);
}}}
becomes
{{{
Cache::setObject($this->cacheKey, $this, $this->cacheLifetime);
}}}
--
Ticket URL: <http://code.mythtv.org/trac/ticket/10504#comment:15>
MythTV <http://code.mythtv.org/trac>
MythTV Media Center
More information about the mythtv-commits
mailing list