milesj / forum

[Deprecated] A CakePHP plugin for forum / bulletin board systems.
MIT License
131 stars 57 forks source link

Update help.ctp #57

Closed jannaahs closed 10 years ago

jannaahs commented 10 years ago

In line 28

...
$this->Html->link(_d('forum', 'edit profile'),
...

is a _ missing before _d. The correct syntax would be:

...
$this->Html->link(__d('forum', 'edit profile'),
...
milesj commented 10 years ago

Cool, thanks!