This commit is contained in:
Naomi 2013-09-30 13:59:08 -04:00
parent 0dd5458269
commit 1fa13eed13
3 changed files with 36 additions and 36 deletions

View file

@ -15,20 +15,20 @@
*/
class CcPlayoutHistoryMetaData extends BaseCcPlayoutHistoryMetaData {
/**
* Set the value of [value] column.
*
* @param string $v new value
* @return CcPlayoutHistoryMetaData The current object (for fluent API support)
*/
public function setDbValue($v)
/**
* Set the value of [value] column.
*
* @param string $v new value
* @return CcPlayoutHistoryMetaData The current object (for fluent API support)
*/
public function setDbValue($v)
{
//make sure the metadata isn't longer than the DB field.
//make sure the metadata isn't longer than the DB field.
$v = substr($v, 0, 128);
parent::setDbValue($v);
return $this;
parent::setDbValue($v);
return $this;
} // setDbValue()
} // CcPlayoutHistoryMetaData