Changeset 57242
- Timestamp:
- 02/07/08 13:56:07 (2 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
modules/sapphire/branches/roa/core/model/fieldtypes/PrimaryKey.php
r56488 r57242 25 25 $objs = DataObject::get($this->object->class); 26 26 27 $first = $objs->First(); 28 $titleField = isset($first->Title) ? "Title" : "Name"; 27 $titleField = (singleton($this->object->class)->hasField('Title')) ? "Title" : "Name"; 29 28 30 29 $map = ($objs) ? $objs->toDropdownMap("ID", $titleField) : false;
