|
From: Markus P. <mar...@us...> - 2005-04-13 21:24:08
|
Update of /cvsroot/mxbb/core/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3079/install Modified Files: mx_install.php mx_install_readme.htm Log Message: ok, second step on fixing double line breaks. I think this is all. Index: mx_install_readme.htm =================================================================== RCS file: /cvsroot/mxbb/core/install/mx_install_readme.htm,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** mx_install_readme.htm 23 Mar 2005 23:41:31 -0000 1.8 --- mx_install_readme.htm 13 Apr 2005 21:23:26 -0000 1.9 *************** *** 1,777 **** ! <html> ! <head> ! <title>Mx Portal installation - readme</title> ! <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> ! <!-- link rel="stylesheet" href="templates/subSilver/subSilver.css" type="text/css" --> ! <style type="text/css"> ! <!-- ! /* ! The original subSilver Theme for phpBB version 2+ ! Created by subBlue design [...1527 lines suppressed...] ! ! <br /> ! If your language is not already translated, duplicate (copy and paste) the /language/lang_english/ directory, rename it to something like "lang_yourlanguage." Translate all of the included files, save it, ZIP it, and upload it to the mxBB Languages Download Area. Be sure to report translated languages to us. We appreciate your contribution. <img src="http://www.mx-system.com/forum/images/smiles/icon_smile.gif" alt="Smile" border="0" /> ! <br /> ! ! <br /> ! <a href="#top">Back to Top</a> ! <br /> ! ! <br /> ! Jon and MennoniteHobbit ! <br /> ! <span style="font-style: italic">On behalf of the rest of the mxBB Team</span></span> ! </td> ! </tr> ! ! </table> ! </body> </html> \ No newline at end of file Index: mx_install.php =================================================================== RCS file: /cvsroot/mxbb/core/install/mx_install.php,v retrieving revision 1.41 retrieving revision 1.42 diff -C2 -d -r1.41 -r1.42 *** mx_install.php 9 Apr 2005 16:21:44 -0000 1.41 --- mx_install.php 13 Apr 2005 21:23:26 -0000 1.42 *************** *** 1,1710 **** ! <?php ! /** ------------------------------------------------------------------------ ! * subject : mxBB-Portal Installation Script ! * begin : june, 2002 ! * copyright : (C) 2002-2005 mxBB-Portal ! * email : jon...@ho... ! * project site : www.mx-system.com ! * ! * editor settings : Please, set tabsize to 4 ! * [...3391 lines suppressed...] ! // When the PHP realpath function is disabled it returns false and generates a message like: ! // ! // Warning: realpath (and maybe other functions) has been disabled for security reasons in ! // path-to-your/install/mx_install.php on line XXX ! // ! // This "security" measure seems somehow stupid since information of the filesystem layout ! // can be easily retrieved from PHP (and Apache) global variables ...as well as from the ! // same PHP generated warning message! :P ! // ! // Just wanted to mention I already saw the phpBB guys also created their own phpbb_realpath ! // function (in includes/functions.php). I never understood why they did it. Only if they ! // had documented the correct reason in their source code. ;-) ! // ! function mx_realpath($path) ! { ! return ( @function_exists('realpath') && @realpath(__FILE__) ? realpath($path) : $path ); ! } ! ?> \ No newline at end of file |