Changeset 6943
- Timestamp:
- 01/05/08 13:36:48 (11 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfPropelActAsCommentableBehaviorPlugin/trunk/modules/sfCommentAdmin/actions/actions.class.php
r5290 r6943 10 10 */ 11 11 class sfCommentAdminActions extends autoSfCommentAdminActions 12 { 12 { 13 protected function updatesfCommentFromRequest() 14 { 15 parent::updatesfCommentFromRequest(); 16 $sf_comment = $this->getRequestParameter('sf_comment'); 17 18 if (isset($sf_comment['author_id']) && $sf_comment['author_id'] == '') 19 { 20 $this->sf_comment->setAuthorId(null); 21 } 22 } 13 23 }