Skip to content

Commit

Permalink
Fix Support for PHP 5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
twiro committed Apr 4, 2017
1 parent db1b85b commit 11d249a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
8 changes: 7 additions & 1 deletion extension.driver.php
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,13 @@ private function processFields(XMLElement $xml)

} else {

if (!empty($element->getChildrenByName('item'))) {
// check the current element for child "item" nodes

$items = $element->getChildrenByName('item');

// process child "item" nodes

if (!empty($items)) {

$this->findEntries($element, 'item');
}
Expand Down
3 changes: 3 additions & 0 deletions extension.meta.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
</author>
</authors>
<releases>
<release version="1.2.1" date="2017-04-04" min="2.3.3" max="2.x.x">
- Fix support for PHP 5.3 ([#16](https://github.com/twiro/multilingual/issues/16))
</release>
<release version="1.2.0" date="2017-03-04" min="2.3.3" max="2.x.x">
- Added support for "Association Output"
</release>
Expand Down

0 comments on commit 11d249a

Please sign in to comment.