Changeset 342
- Timestamp:
- 10/16/08 10:06:42 (14 years ago)
- Location:
- dev
- Files:
-
- 5 modified
Legend:
- Unmodified
- Added
- Removed
-
dev/common/includes/globals.php
r340 r342 1 1 <?php 2 2 // current subversion revision 3 preg_match('/\$Re'.'vision: (.*?) \$/', '$Revision: 34 0$', $match);3 preg_match('/\$Re'.'vision: (.*?) \$/', '$Revision: 342 $', $match); 4 4 define('SVN_REV', $match[1]); 5 5 -
dev/install/install_step3.php
r341 r342 38 38 <tr><td width="120"><b>Password:</b></td><td><input type=text name=dbpass id=pass size=20 maxlength=80 value="<?php echo $_SESSION['sql']['pass']; ?>"></td></tr> 39 39 <tr><td width="120"><b>Database:</b></td><td><input type=text name=db id=db size=20 maxlength=80 value="<?php echo $_SESSION['sql']['db']; ?>"></td></tr> 40 <tr><td width="120"><b>Engine:</b></td><td><input type=radio name=engine id=engine value="MyISAM" > MyISAM <inputtype=radio name=engine id=engine value="InnoDB">InnoDB</tr>40 <tr><td width="120"><b>Engine:</b></td><td><input type=radio name=engine id=engine value="MyISAM" <?php if ($_SESSION['sql']['engine'] != "InnoDB") echo "CHECKED"; ?>> MyISAM <input <?php if ($_SESSION['sql']['engine'] == "InnoDB") echo "CHECKED"; ?> type=radio name=engine id=engine value="InnoDB">InnoDB</tr> 41 41 <tr><td width="120"></td><td><input type=submit name=submit value="Test"></td></tr> 42 42 </table> … … 99 99 } 100 100 } 101 die();102 101 ?> 103 102 -
dev/install/install_step4.php
r341 r342 72 72 { 73 73 echo 'done<br/>'; 74 if $_SESSION['sql']['engine'] == "InnoDB"{74 if ($_SESSION['sql']['engine'] == "InnoDB"){ 75 75 echo 'Altering table '. $table .' into InnoDB...'; 76 76 $id = mysql_query('ALTER TABLE '.$table.' ENGINE=InnoDB;'); -
dev/mods/history/history.xml
r340 r342 1 1 <?xml version="1.0" ?> 2 2 <history> 3 <changeset> 4 <rev>342</rev> 5 <author>beans</author> 6 <date>16.10.2008</date> 7 <comment> 8 <type>UPD</type> 9 <text> 10 Fixed some typos and leftover debug in ralles code 11 </text> 12 </comment> 13 </changeset> 14 <changeset> 15 <rev>341</rev> 16 <author>ralle</author> 17 <date>15.10.2008</date> 18 <comment> 19 <type>UPD</type> 20 <text> 21 InnoDB Engine is now chooseable in installer (inclusive server check for selected Engine) 22 </text> 23 </comment> 24 </changeset> 3 25 <changeset> 4 26 <rev>340</rev> … … 76 98 </changeset> 77 99 <changeset> 100 <rev>329</rev> 101 <author>exi</author> 102 <date>16.08.2008</date> 103 <comment> 104 <type>UPD</type> 105 <text> 106 Beta support for mixed kills in one list, stil needs template editing though 107 </text> 108 </comment> 109 </changeset> 110 <changeset> 111 <rev>328</rev> 112 <author>exi</author> 113 <date>22.06.2008</date> 114 <comment> 115 <type>FIX</type> 116 <text> 117 Parser fix for german killmails from Haka 118 </text> 119 </comment> 120 </changeset> 121 <changeset> 122 <rev>327</rev> 123 <author>exi</author> 124 <date>12.06.2008</date> 125 <comment> 126 <type>FIX</type> 127 <text> 128 Emergency fix for new killmail format 129 </text> 130 </comment> 131 </changeset> 132 <changeset> 133 <rev>337</rev> 134 <author>beans</author> 135 <date>09.10.2008</date> 136 <comment> 137 <type>UPD</type> 138 <text> 139 Killboard fetches character id from api 140 </text> 141 </comment> 142 </changeset> 143 <changeset> 78 144 <rev>326</rev> 79 145 <author>ralle030583</author> -
dev/packages/database/kb3_pilots/table.xml
r256 r342 2 2 <kb3> 3 3 <name>kb3_pilots</name> 4 <rows>390 12</rows>4 <rows>39009</rows> 5 5 <structure>CREATE TABLE `kb3_pilots` ( 6 6 `plt_id` int(11) NOT NULL auto_increment,