diff --git a/shellinabox/shell_in_a_box.jspp b/shellinabox/shell_in_a_box.jspp index 8f9c5aa..4e449cc 100644 --- a/shellinabox/shell_in_a_box.jspp +++ b/shellinabox/shell_in_a_box.jspp @@ -464,16 +464,17 @@ ShellInABox.prototype.messageReplay = function(type, data) { }; ShellInABox.prototype.about = function() { - alert("Shell In A Box version " + VERSION + - "\nCopyright 2008-2010 by Markus Gutschke\n" + - "For more information check http://shellinabox.com" + + alert("Shell In A Box " + VERSION + + "\n\n" + + "Copyright 2008-2015 by Markus Gutschke. For more information visit\n" + + "http://shellinabox.com or http://github.com/shellinabox/." + (typeof serverSupportsSSL != 'undefined' && serverSupportsSSL ? "\n\n" + - "This product includes software developed by the OpenSSL Project\n" + - "for use in the OpenSSL Toolkit. (http://www.openssl.org/)\n" + - "\n" + - "This product includes cryptographic software written by " + - "Eric Young\n(eay@cryptsoft.com)" : + "This product includes software developed by the OpenSSL Project for\n" + + "use in the OpenSSL Toolkit. (http://www.openssl.org/)" + + "\n\n" + + "This product includes cryptographic software written by Eric Young\n" + + "(eay@cryptsoft.com)" : "")); };