Skip to content

Commit

Permalink
Merge pull request #29 from jhedstrom/php53-fixes
Browse files Browse the repository at this point in the history
Php53 fixes

Signed-off-by: Jonathan Hedstrom <[email protected]>
  • Loading branch information
jhedstrom committed Mar 31, 2015
1 parent 15d72b1 commit 9124266
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: php

php: [5.6, 5.5, 5.4, hhvm]
php: [5.6, 5.5, 5.4, 5.3, hhvm]

install:
- composer install --dev --prefer-source
Expand Down
2 changes: 1 addition & 1 deletion src/Drupal/Driver/Cores/Drupal6.php
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ protected function expandEntityFields($entity_type, \stdClass $entity) {
* {@inheritDoc}
*/
public function getEntityFieldTypes($entity_type) {
$taxonomy_fields = ['taxonomy' => 'taxonomy'];
$taxonomy_fields = array('taxonomy' => 'taxonomy');
if (!module_exists('content')) {
return $taxonomy_fields;
}
Expand Down

0 comments on commit 9124266

Please sign in to comment.