svn: /web/doc-editor/trunk/php/ SvnClient.php
[email protected] (Yannick Torres)
| Newsgroups | php.doc.web |
|---|---|
| Message-ID | <[email protected]> |
yannick Fri, 23 Apr 2010 22:29:11 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=298397
Log:
Fix var name
Changed paths:
U web/doc-editor/trunk/php/SvnClient.php
Modified: web/doc-editor/trunk/php/SvnClient.php
===================================================================
--- web/doc-editor/trunk/php/SvnClient.php 2010-04-23 22:28:35 UTC (rev 298396)
+++ web/doc-editor/trunk/php/SvnClient.php 2010-04-23 22:29:11 UTC (rev 298397)
@@ -566,7 +566,7 @@
// Walk throw the output to filter some text
$cleanOutput = array();
- for( $i=0; $i < count($ouput); $i++ ) {
+ for( $i=0; $i < count($output); $i++ ) {
if( $output[$i] != "svn: warning: Can't open file '/root/.subversion/servers': Permission denied" ) {
array_push($cleanOutput, $output[$i]);
}