Page MenuHomePhabricator

Only variables should be passed by reference in LiquidThreads/api/ApiQueryLQTThreads.php
Closed, ResolvedPublic

Description

2 PHP Strict Standards: Only variables should be passed by reference in /www/translatewiki.net/w/extensions/LiquidThreads/api/ApiQueryLQTThreads.php on line 166


Version: master
Severity: normal

Details

Reference
bz40636

Event Timeline

bzimport raised the priority of this task from to Needs Triage.Nov 22 2014, 12:51 AM
bzimport set Reference to bz40636.
bzimport added a subscriber: Unknown Object (MLST).

(In reply to comment #0)

2 PHP Strict Standards: Only variables should be passed by reference in
/www/translatewiki.net/w/extensions/LiquidThreads/api/ApiQueryLQTThreads.php on
line 166

function __construct( &$output, &$article, &$title, &$user, &$request ) {

$view = new LqtView( $out, $article, $title, $this->getUser(), $this->getRequest() );

I'm guessing it doesn't like the getUser/getRequest calls like that...