Skip to content

Commit

Permalink
fix for php 5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
roed committed Sep 17, 2014
1 parent 1227d85 commit bd48de7
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -485,10 +485,10 @@ public function testIfRulesAreResetWithMultipleForms()
)
)
));
$inputFilter1->add([
$inputFilter1->add(array(
'name' => 'name',
'required' => true
]);
));

$form1->setInputFilter($inputFilter1);

Expand All @@ -507,10 +507,10 @@ public function testIfRulesAreResetWithMultipleForms()
)
)
));
$inputFilter2->add([
$inputFilter2->add(array(
'name' => 'name',
'required' => true
]);
));

$form2->setInputFilter($inputFilter2);

Expand Down

0 comments on commit bd48de7

Please sign in to comment.