1
0
mirror of synced 2025-02-20 22:23:14 +03:00

Update en/tutorials/getting-started-xml-edition.rst

This commit is contained in:
Benjamin Eberlei 2012-01-05 21:40:15 +01:00
parent 442227fc89
commit 6d1f716f8b

View File

@ -1009,7 +1009,7 @@ the first read-only use-case:
$bugs = $query->getResult();
foreach($bugs AS $bug) {
echo $bug->description." - ".$bug->created->format('d.m.Y')."\n";
echo $bug->getDescription()." - ".$bug->getCreated()->format('d.m.Y')."\n";
echo " Reported by: ".$bug->getReporter()->name."\n";
echo " Assigned to: ".$bug->getEngineer()->name."\n";
foreach($bug->getProducts() AS $product) {