Skip to content

Commit

Permalink
Added 'security tips' link when world starts up
Browse files Browse the repository at this point in the history
  • Loading branch information
nickgammon committed Aug 14, 2010
1 parent c30fbea commit ce229bb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion doc.cpp
Expand Up @@ -779,9 +779,15 @@ void CMUSHclientDoc::SetUpOutputWindow (void)
Note ("");
Note (Translate ("For information and assistance about MUSHclient visit our forum at:"));
Tell (" ");
Hyperlink (MUSHCLIENT_FORUM_URL, FORUM_URL, Translate ("Go to forum"),
Hyperlink (MUSHCLIENT_FORUM_URL, FORUM_URL, Translate ("MUSHclient forum"),
"deepskyblue", "black", TRUE);
Note ("");
Tell (Translate ("Can you trust your plugins? See: "));
Hyperlink ("http://mushclient.com/forum/?id=10503",
"Security tips", Translate ("How to trust plugins"),
"deepskyblue", "black", TRUE);
Note ("");



// output stuff that appeared before we set up the output buffer
Expand Down
2 changes: 1 addition & 1 deletion globalregistryoptions.cpp
Expand Up @@ -199,7 +199,7 @@ void CMUSHclientApp::LoadGlobalsFromDatabase (void)

if (m_strLuaScript.IsEmpty ())
m_strLuaScript = "-- Put Lua initialization code (eg. sandbox) here.\r\n"
"-- Possible sandbox here: http://mushclient.com/forum/?id=10503\r\n";
"-- Possible sandbox, and security tips: http://mushclient.com/forum/?id=10503\r\n";


} // end of CMUSHclientApp::LoadGlobalsFromDatabase
Expand Down

0 comments on commit ce229bb

Please sign in to comment.