Skip to content

Commit

Permalink
Making the HtmlHelper a default helper for emails.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Oct 2, 2011
1 parent 3907c2b commit adcb80b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Cake/Network/Email/CakeEmail.php
Expand Up @@ -187,7 +187,7 @@ class CakeEmail {
*
* @var array
*/
protected $_helpers = array();
protected $_helpers = array('Html');

/**
* Text message
Expand Down Expand Up @@ -1051,7 +1051,7 @@ public function reset() {
$this->_template = '';
$this->_viewRender = 'View';
$this->_viewVars = array();
$this->_helpers = array();
$this->_helpers = array('Html');
$this->_textMessage = '';
$this->_htmlMessage = '';
$this->_message = '';
Expand Down

0 comments on commit adcb80b

Please sign in to comment.