Skip to content

Commit

Permalink
MDL-33018 fix borked xmldb_index contructor
Browse files Browse the repository at this point in the history
Thanks Eloy!
  • Loading branch information
skodak committed Jul 6, 2012
1 parent bd991d0 commit 661dd35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/xmldb/xmldb_index.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public function __construct($name, $type=null, $fields=array(), $hints=array())
$this->fields = array();
$this->hints = array();
parent::__construct($name);
return $this->set_attributes($type, $fields, $hints);
$this->set_attributes($type, $fields, $hints);
}

/**
Expand Down

0 comments on commit 661dd35

Please sign in to comment.