Changeset 1062 for plugins/apostropheBlogPlugin/trunk/lib/form/doctrine/PluginaBlogItemForm.class.php
- Timestamp:
- 04/26/10 16:26:04 (2 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
plugins/apostropheBlogPlugin/trunk/lib/form/doctrine/PluginaBlogItemForm.class.php
r1006 r1062 17 17 18 18 unset( 19 $this['type'], $this['page_id'], $this['created_at'], $this['updated_at'] 19 $this['type'], $this['page_id'], $this['created_at'], $this['updated_at'], $this['slug_saved'] 20 20 ); 21 21 … … 52 52 $this->widgetSchema['tags'] = new sfWidgetFormInput(array('default' => implode(', ', $this->getObject()->getTags())), array('class' => 'tag-input', 'autocomplete' => 'off')); 53 53 $this->validatorSchema['tags'] = new sfValidatorString(array('required' => false)); 54 }55 56 public function updateSlugColumn($value)57 {58 return $value;59 54 } 60 55

