Changeset 454
- Timestamp:
- 11/16/08 23:04:43 (2 months ago)
- Files:
-
- trunk/lib/model/Contact.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/model/Contact.php
r413 r454 91 91 $v = join("'", array_map('ucwords', explode("'", $v))); 92 92 $v = join("-", array_map('ucwords', explode("-", $v))); 93 $this->firstname = $v; 94 $this->modifiedColumns[] = ContactPeer::FIRSTNAME; 95 } 96 } 97 98 public function setFirstnameWithEncode($v) 99 { 100 if ($this->firstname !== $v) { 93 101 $this->firstname = $v; 94 102 $this->modifiedColumns[] = ContactPeer::FIRSTNAME;
