Skip to content

Commit

Permalink
Fix ctor.
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Mar 12, 2015
1 parent 20876d2 commit 11158f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions framework/Image/lib/Horde/Image/Svg.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ class Horde_Image_Svg extends Horde_Image_Base
*
* @see Horde_Image_Base::_construct
*/
public function __construct($params)
public function __construct($params, $context = array())
{
parent::__construct($params);
parent::__construct($params, $context);
$this->_svg = new XML_SVG_Document(array(
'width' => $this->_width,
'height' => $this->_height
Expand Down

0 comments on commit 11158f6

Please sign in to comment.