milesj / forum

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

missing _ in View/Forum/help.ctp #56

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'),
...
miguelgf commented 10 years ago

Why don't you try to fix it by yourself?

https://github.com/milesj/forum/edit/master/View/Forum/help.ctp

jannaahs commented 10 years ago

Now i learned something new ;)