Page MenuHomePhabricator

wrong variable name
Closed, ResolvedPublic

Description

Author: wiki

Description:
file Database.php

function sourceFile( $filename ) {

$fp = fopen( $filename, 'r' );
if ( false === $fp ) {
  return "Could not open \"{$fname}\".\n";
}

...

should be:

return "Could not open \"{$filename}\".\n";

Thats all :-)


Version: 1.7.x
Severity: trivial
OS: Windows XP
Platform: PC

Details

Reference
bz7324

Event Timeline

bzimport raised the priority of this task from to Medium.Nov 21 2014, 9:22 PM
bzimport set Reference to bz7324.
bzimport added a subscriber: Unknown Object (MLST).