Commit e915a87c575cb4d428ac14bb228d08a6826276cb

Authored by Elena.Budnik
1 parent 0577d36f

upper cases in DerivedParams are allowed

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
php/classes/DerivedParamMgr.php
... ... @@ -360,8 +360,8 @@ class DerivedParamMgr extends AmdaObjectMgr
360 360 if (!$res['valid']) return $res;
361 361  
362 362 //only low case
363   - if (strtolower($p->name) != $p->name)
364   - return array('valid' => false, 'error' => 'Use only low case');
  363 +// if (strtolower($p->name) != $p->name)
  364 +// return array('valid' => false, 'error' => 'Use only low case');
365 365  
366 366 return array('valid' => true);
367 367 }
... ...