[Fixed] List of inheritance types empty

0 votes
asked Jan 23, 2013 in Solved by jwagner (3,630 points)
recategorized Jan 24, 2013 by ludek.vodicka

ORM Designer 2.1.7.680, MVC: Symfony2, ORM: Doctrine2

The Inheritance type dropdown is empty in Inheritance Wizard as well as Inheritance Editor.
That effectively breaks the Inheritance modeling.

Image caption

2 Answers

0 votes
answered Jan 24, 2013 by ludek.vodicka Skipper developer (140,450 points)
selected Jan 24, 2013 by jwagner
 
Best answer

This issue was fixed in latest version 2.1.7.681. You can download this version here http://support.orm-designer.com/31/download-orm-designer2-here

+1 vote
answered Jan 23, 2013 by ludek.vodicka Skipper developer (140,450 points)

The problem is in XML configuration file. There is a typo in XML element.

To fix this problem simply change lines 112 and 116 in file Doctrine2.ormd2.cfg.xml.

update text from:

<inheritance-types>...</inheritance-types>

to

<inheritances-types>....<inheritances-types>

(add 's' to the word inheritances). Next version will contain this fix.

commented Jan 23, 2013 by jwagner (3,630 points)

Thanks, that does it!

...