#17579220 : fixed the error occurred when changeset was empty

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5186 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
haneul 2008-12-26 06:32:13 +00:00
parent 66a8118e54
commit e577680a3a

View file

@ -398,6 +398,10 @@
debugPrint($output);
return array();
}
if(!$output->data)
{
$output->data = array();
}
foreach($output->data as $key => $changeset)
{
$changeset->message = $this->_linkXE($changeset->message);