Development

#4332 (Error in DoctrineAdminColumn class)

You must first sign up to be able to contribute.

Ticket #4332 (closed defect: fixed)

Opened 5 years ago

Last modified 5 years ago

Error in DoctrineAdminColumn class

Reported by: jphilip Assigned to: Jonathan.Wage
Priority: minor Milestone:
Component: sfDoctrinePlugin Version: 1.0.18
Keywords: Cc:
Qualification: Unreviewed

Description

The isNotNull method of the DoctrineAdminColumn? class causes an error. It was labeled as FIXME, I attach a patch that replaces:

if (isset($this->column[2]notnull?))

return $this->column[2]notnull?;

with:

if (isset($this->columnnotnull?))

return $this->columnnotnull?;

Attachments

patch1.patch (0.5 kB) - added by jphilip on 09/08/08 02:50:42.

Change History

09/08/08 02:50:42 changed by jphilip

  • attachment patch1.patch added.

09/11/08 23:02:17 changed by Jonathan.Wage

  • status changed from new to closed.
  • resolution set to fixed.

(In [11456]) fixes #4332