Skip to content

Commit ccb8e53

Browse files
committed
Merge pull request #60 from zendesk/jose/fix_block_type
Fix exceptions on exception.log
2 parents 74047b7 + 2885b8e commit ccb8e53

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

src/app/code/community/Zendesk/Zendesk/Block/Adminhtml/Create/Customer.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ class Zendesk_Zendesk_Block_Adminhtml_Create_Customer extends Mage_Adminhtml_Blo
2020

2121
public function __construct()
2222
{
23+
$this->_controller = false;
2324
parent::__construct();
2425
$this->setId('zendesk_create_customer_search');
2526
}

src/app/code/community/Zendesk/Zendesk/Block/Adminhtml/Create/Edit.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ class Zendesk_Zendesk_Block_Adminhtml_Create_Edit extends Mage_Adminhtml_Block_W
1919
{
2020
protected function _construct()
2121
{
22+
$this->_controller = false;
2223
parent::_construct();
2324
}
2425

src/app/code/community/Zendesk/Zendesk/Block/Adminhtml/Create/Order.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ class Zendesk_Zendesk_Block_Adminhtml_Create_Order extends Mage_Adminhtml_Block_
2020

2121
public function __construct()
2222
{
23+
$this->_controller = false;
2324
parent::__construct();
2425
$this->setId('zendesk_create_order_search');
2526
}

0 commit comments

Comments
 (0)