Skip to content

Commit

Permalink
Switching off 'enabled' fixes issue 106
Browse files Browse the repository at this point in the history
Not exactly sure what ;enabled; controls, but it seems to switch of some debug mode. I check the php-asmanager.php file but could not find what it does control.

Fixes: PhantomVl#106
  • Loading branch information
tensi0n519 authored Feb 22, 2021
1 parent 2f854e7 commit 8f04208
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sccp_manager.inc/aminterface/aminterface.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public function __construct($parent_class = null)
$this->_socket = false;
$this->_connect_state = false;
$this->_error = array();
$this->_config = array('host' => 'localhost', 'user' => '', 'pass' => '', 'port' => '5038', 'tsoket' => 'tcp://', 'timeout' => 30, 'enabled' => true);
$this->_config = array('host' => 'localhost', 'user' => '', 'pass' => '', 'port' => '5038', 'tsoket' => 'tcp://', 'timeout' => 30, 'enabled' => false);
$this->_eventListeners = array();
// $this->_eventFactory = new EventFactoryImpl(\Logger::getLogger('EventFactory'));
// $this->_responseFactory = new ResponseFactoryImpl(\Logger::getLogger('ResponseFactory'));
Expand Down

0 comments on commit 8f04208

Please sign in to comment.