Skip to content

Commit

Permalink
Match method signature to parent.
Browse files Browse the repository at this point in the history
Fixes honoring the ActiveSync debug log level.
  • Loading branch information
mrubinsk committed Sep 18, 2014
1 parent d0c52a9 commit 3b0ef0d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions framework/ActiveSync/lib/Horde/ActiveSync/Wbxml/Encoder.php
Expand Up @@ -72,13 +72,14 @@ class Horde_ActiveSync_Wbxml_Encoder extends Horde_ActiveSync_Wbxml
/**
* Const'r
*
* @param stream $output The output stream
* @param stream $output The output stream
* @param integer $log_level The logging level
*
* @return Horde_ActiveSync_Wbxml_Encoder
*/
function __construct($output)
function __construct($output, $log_level = self::LOG_PROTOCOL)
{
parent::__construct($output);
parent::__construct($output, $log_level);

/* reverse-map the DTD */
$dtd = array();
Expand Down

0 comments on commit 3b0ef0d

Please sign in to comment.