I have this row:
<input type="text" name="mpsRegnomer" er="невалиден номер" id="mpsRegnomer" class="upertrim inputGSmall" value="' . (isset($this->data['mpsRegnomer'])) ? '2' : '3' . '" style="margin-top:0px"/>
And it returns me 2 for value, when I use this row above it:
var_dump(isset($this->data['mpsRegnomer'])); exit;
It returns me bool(false) ? Based on documentation it should return me 3 instead of 2 ?