[phpbbreloaded-checkins] SF.net SVN: phpbbreloaded: [237] phpBB Reloaded 2
Status: Planning
Brought to you by:
tehphpmaster
From: <mar...@us...> - 2006-06-20 22:09:33
|
Revision: 237 Author: markthedaemon Date: 2006-06-20 15:09:27 -0700 (Tue, 20 Jun 2006) ViewCVS: http://svn.sourceforge.net/phpbbreloaded/?rev=237&view=rev Log Message: ----------- Modified Paths: -------------- phpBB Reloaded 2/config.php phpBB Reloaded 2/includes/page_header.php Modified: phpBB Reloaded 2/config.php =================================================================== --- phpBB Reloaded 2/config.php 2006-06-20 22:07:00 UTC (rev 236) +++ phpBB Reloaded 2/config.php 2006-06-20 22:09:27 UTC (rev 237) @@ -0,0 +1,18 @@ +<?php + + +// phpBB 2.x auto-generated config file +// Do not change anything in this file! + +$dbms = 'mysql'; + +$dbhost = 'localhost'; +$dbname = 'phpbbreloaded'; +$dbuser = 'root'; +$dbpasswd = ''; + +$table_prefix = 'reloaded_'; + +define('PHPBB_INSTALLED', true); + +?> \ No newline at end of file Modified: phpBB Reloaded 2/includes/page_header.php =================================================================== --- phpBB Reloaded 2/includes/page_header.php 2006-06-20 22:07:00 UTC (rev 236) +++ phpBB Reloaded 2/includes/page_header.php 2006-06-20 22:09:27 UTC (rev 237) @@ -639,7 +639,7 @@ { $template->assign_vars(array( 'I_RANKS' => '<img src="' . $images['Ranks'] . '" width="12" height="13" border="0" alt="' . $lang['Ranks'] . '" hspace="3" />', - 'U_RANKS' => append_sid("ranks.$phpEx"), + 'U_RANKS' => append_sid('ranks.'.$phpEx), 'L_RANKS' => $lang['Ranks'], ) ); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |