vinicrf / phpsvnclient

Automatically exported from code.google.com/p/phpsvnclient
0 stars 0 forks source link

OutText variable Undefined #22

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Run CheckOut
2.
3.

What is the expected output? What do you see instead?
Error on Line 233 Undefined variable: outText

What version of the product are you using? On what operating system?
current trunk

Please provide any additional information below.

Fix:

on line 233:

$outText .= "<font color='blue'>Getting file: </font> " . $path;

must be:

$outText = "<font color='blue'>Getting file: </font> " . $path;

Original issue reported on code.google.com by tschechniker on 5 Apr 2012 at 7:04