Browse Source

Merge pull request #1407 from ravage84/patch-2

Some love for a deprecated class
Mark Story 12 years ago
parent
commit
3cf30e3347
1 changed files with 3 additions and 3 deletions
  1. 3 3
      lib/Cake/Controller/Component/EmailComponent.php

+ 3 - 3
lib/Cake/Controller/Component/EmailComponent.php

@@ -29,9 +29,9 @@ App::uses('CakeEmail', 'Network/Email');
  * based on the standard outlined in http://www.rfc-editor.org/rfc/rfc2822.txt
  *
  * @package       Cake.Controller.Component
- * @link http://book.cakephp.org/2.0/en/core-libraries/components/email.html
- * @link http://book.cakephp.org/2.0/en/core-utility-libraries/email.html
- * @deprecated Use Network/CakeEmail
+ * @link          http://book.cakephp.org/2.0/en/core-libraries/components/email.html
+ * @link          http://book.cakephp.org/2.0/en/core-utility-libraries/email.html
+ * @deprecated    Will be removed in 3.0. Use Network/CakeEmail instead
  */
 class EmailComponent extends Component {