#1699: Undefined class constant 'ATTR_FKNAME_FORMAT'
-----------------------------------+--------------------------------------- -
Reporter: anj | Owner: jwage
Type: defect | Status: new
Priority: minor | Milestone: 1.1.0
Component: Attributes | Version: 1.1-DEV
Keywords: | Has_test: 0
Mystatus: Pending Core Response | Has_patch: 0
-----------------------------------+--------------------------------------- -
In 1.1 Branch the following error occures:
Fatal error: Undefined class constant 'ATTR_FKNAME_FORMAT' in
/var/www/gastronovi_eeecore/lib/Doctrine/Doctrine/Manager.php on line 97
Its a simple wording error, so the solution is:
in Doctrine.php
{{{
const ATTR_FKNANE_FORMAT = 121;
}}}
should be:
{{{
const ATTR_FKNAME_FORMAT = 121;
}}}
--
Ticket URL: <http://trac.doctrine-project.org/ticket/1699>
Doctrine <http://www.phpdoctrine.org>
PHP Doctrine Object Relational Mapper