git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6678 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2009-06-27 13:59:27 +00:00
parent 06452b0541
commit 34758060d3

View file

@ -207,7 +207,7 @@
$command = sprintf('%s --non-interactive %s --config-dir %s log --xml --limit 2 %s%s@%d', $this->svn_cmd, $this->_getAuthInfo(), $this->tmp_dir, $this->url, $path, $erev);
$buff = $this->execCmd($command, $error);
$xmlDoc = $this->oXml->parse($buff);
$brev = $xmlDoc->log->logentry[1]->attrs->revision;
if(is_array($xmlDoc->log->logentry)) $brev = $xmlDoc->log->logentry[1]->attrs->revision;
if(!$brev) return;
}