[phpbbreloaded-checkins] SF.net SVN: phpbbreloaded: [239] phpBB Reloaded 2/install
Status: Planning
Brought to you by:
tehphpmaster
From: <mar...@us...> - 2006-06-20 22:11:11
|
Revision: 239 Author: markthedaemon Date: 2006-06-20 15:11:01 -0700 (Tue, 20 Jun 2006) ViewCVS: http://svn.sourceforge.net/phpbbreloaded/?rev=239&view=rev Log Message: ----------- Modified Paths: -------------- phpBB Reloaded 2/install/cookie.php phpBB Reloaded 2/install/schemas/mysql_schema.sql phpBB Reloaded 2/install/update_to_latest.php Modified: phpBB Reloaded 2/install/cookie.php =================================================================== --- phpBB Reloaded 2/install/cookie.php 2006-06-20 22:10:05 UTC (rev 238) +++ phpBB Reloaded 2/install/cookie.php 2006-06-20 22:11:01 UTC (rev 239) @@ -533,16 +533,16 @@ <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $lang['ENCODING']; ?>"> <meta http-equiv="Content-Style-Type" content="text/css"> <title><?php echo $cookie_lang['Welcome_cookie'];?></title> -<link rel="stylesheet" href="../templates/subSilver/subSilver.css" type="text/css"> +<link rel="stylesheet" href="../templates/subC1/subC1.css" type="text/css"> <style type="text/css"> <!-- -th { background-image: url('../templates/subSilver/images/cellpic3.gif') } -td.cat { background-image: url('../templates/subSilver/images/cellpic1.gif') } -td.rowpic { background-image: url('../templates/subSilver/images/cellpic2.jpg'); background-repeat: repeat-y } -td.catHead,td.catSides,td.catLeft,td.catRight,td.catBottom { background-image: url('../templates/subSilver/images/cellpic1.gif') } +th { background-image: url('../templates/subC1/images/cellpic3.gif') } +td.cat { background-image: url('../templates/subC1/images/cellpic1.gif') } +td.rowpic { background-image: url('../templates/subC1/images/cellpic2.jpg'); background-repeat: repeat-y } +td.catHead,td.catSides,td.catLeft,td.catRight,td.catBottom { background-image: url('../templates/subC1/images/cellpic1.gif') } /* Import the fancy styles for IE only (NS4.x doesn't use the @import function) */ -@import url("../templates/subSilver/formIE.css"); +@import url("../templates/subC1/formIE.css"); //--> </style> </head> @@ -554,7 +554,7 @@ <tr> <td><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> - <td><img src="../templates/subSilver/images/logo_phpBB.gif" border="0" alt="Forum Home" vspace="1" /></td> + <td><img src="../templates/subC1/images/logo_phpBB.gif" border="0" alt="Forum Home" vspace="1" /></td> <td align="center" width="100%" valign="middle"><span class="maintitle"><?php echo $cookie_lang['Welcome_cookie'];?></span></td> </tr> </table></td> Modified: phpBB Reloaded 2/install/schemas/mysql_schema.sql =================================================================== --- phpBB Reloaded 2/install/schemas/mysql_schema.sql 2006-06-20 22:10:05 UTC (rev 238) +++ phpBB Reloaded 2/install/schemas/mysql_schema.sql 2006-06-20 22:11:01 UTC (rev 239) @@ -575,6 +575,7 @@ search_id int(11) unsigned NOT NULL default '0', session_id varchar(32) NOT NULL default '', search_array text NOT NULL, + search_time int(11) DEFAULT '0' NOT NULL; PRIMARY KEY (search_id), KEY session_id (session_id) ) TYPE=MyISAM; Modified: phpBB Reloaded 2/install/update_to_latest.php =================================================================== --- phpBB Reloaded 2/install/update_to_latest.php 2006-06-20 22:10:05 UTC (rev 238) +++ phpBB Reloaded 2/install/update_to_latest.php 2006-06-20 22:11:01 UTC (rev 239) @@ -207,7 +207,17 @@ VALUES ('search_min_chars', '3')"; break; } + case '.2.1': + switch (SQL_LAYER) + { + case 'mysql': + case 'mysql4': + $sql[] = "ALTER TABLE " . SEARCH_TABLE . " + ADD COLUMN search_time int(11) DEFAULT '0' NOT NULL"; + break; } + + } echo "<h2>Updating database schema</h2>\n"; echo "<p>Progress :: <b>"; flush(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |