MightyGorgon / icy_phoenix_plugins

Plugins for Icy Phoenix
http://www.icyphoenix.com
7 stars 6 forks source link

[Guestbooks] No message when adding a guestbook comment #34

Open vendethiel opened 9 years ago

vendethiel commented 9 years ago

When you add a guestbook comment, there's an empty line which, supposedly, should contain a "it worked" message, but nothing appears except for the two "go back" links.

MWE001 commented 7 years ago

I fixed this.

OPEN plugins/guestbook/guestbook.php

FIND

$message .= '<br /><br />' . sprintf($lang['CLICK_RETURN_POST'],

BEFORE ADD

$message .= '<br /><br />' . sprintf($lang['MESSAGE_SUCCESS']);

OPEN plugins/guestbook/lang_plugin.php

FIND

'CLICK_RETURN_GUESTBOOKS' => 'Click %sHere%s to return to Guestbooks',

BEFORE ADD

'MESSAGE_SUCCESS' => '<b>Message Sent Successfully</b>',

Save and close files.

MightyGorgon commented 7 years ago

Thanks for the suggestion, I'll fix this.