Revert "Merge pull request #3002 from moberemk/patch-2"

This reverts commit 8e3d6cffb7, reversing
changes made to 92800889a6.
This commit is contained in:
Jose Lorenzo Rodriguez 2014-04-06 21:48:59 +02:00
parent 8e3d6cffb7
commit 0d80c92ffb

View file

@ -174,13 +174,12 @@ class HtmlHelper extends AppHelper {
* @param string $name Text for link * @param string $name Text for link
* @param string $link URL for link (if empty it won't be a link) * @param string $link URL for link (if empty it won't be a link)
* @param string|array $options Link attributes e.g. array('id' => 'selected') * @param string|array $options Link attributes e.g. array('id' => 'selected')
* @return this HtmlHelper * @return void
* @see HtmlHelper::link() for details on $options that can be used. * @see HtmlHelper::link() for details on $options that can be used.
* @link http://book.cakephp.org/2.0/en/core-libraries/helpers/html.html#creating-breadcrumb-trails-with-htmlhelper * @link http://book.cakephp.org/2.0/en/core-libraries/helpers/html.html#creating-breadcrumb-trails-with-htmlhelper
*/ */
public function addCrumb($name, $link = null, $options = null) { public function addCrumb($name, $link = null, $options = null) {
$this->_crumbs[] = array($name, $link, $options); $this->_crumbs[] = array($name, $link, $options);
return $this;
} }
/** /**