Skip to content

Commit

Permalink
Enh: Увеличено ограничение длинны полей notice и map до 65535 в конта…
Browse files Browse the repository at this point in the history
…ктах
  • Loading branch information
tatarinov committed Aug 30, 2014
1 parent 0db311d commit 433f3c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/protected/modules/contact/models/BContact.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function rules()
array('visible', 'numerical', 'integerOnly' => true),
array('url, name', 'length', 'max' => 255),
array('address', 'length', 'max' => 255),
array('notice, map', 'length', 'max' => 2048),
array('notice, map', 'length', 'max' => 65535),
array('name, sysname, url, address, notice, map', 'safe'),
);
}
Expand Down

0 comments on commit 433f3c5

Please sign in to comment.