Skip to content

Commit

Permalink
Merge pull request #9189 from kaltura/Orion-15.18.0-REACH2-796
Browse files Browse the repository at this point in the history
increase dictionary max chars to 4000
  • Loading branch information
gotlieb authored Feb 18, 2020
2 parents 89f56a0 + 0db6dc4 commit ae6b5a6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugins/reach/admin/forms/ReachProfileConfigure.php
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public function init()

$this->addLine("Dictionaries Line");
$this->addTitle('Reach Profile Dictionaries:');
$this->addTitle('Max 1000 Characters per dictionary');
$this->addTitle('Max 4000 Characters per dictionary');

$dictionariesSubForm = new Zend_Form_SubForm(array('DisableLoadDefaultDecorators' => true));
$dictionariesSubForm->addDecorator('ViewScript', array(
Expand Down
2 changes: 1 addition & 1 deletion plugins/reach/admin/scripts/dictionaries-sub-form.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

var dictionaryIndex = 0;
var maxDictionariesIndex = 0;
var maxChars = 1000;
var maxChars = 4000;

function addDictionary(target)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/
class KalturaReachProfile extends KalturaObject implements IRelatedFilterable
{
const MAX_DICTIONARY_LENGTH = 1000;
const MAX_DICTIONARY_LENGTH = 4000;

/**
* @var int
Expand Down

0 comments on commit ae6b5a6

Please sign in to comment.