fix struct, forgot an ,

fix struct, forgot an ,
This commit is contained in:
novgorodschi catalin
2026-06-30 11:45:34 +03:00
parent 97d6b7650c
commit e66185937c
12 changed files with 16 additions and 2 deletions
+1 -1
View File
@@ -290,7 +290,7 @@ $gaulPct=($users>0)?round(100*$gaul/$users,2):0;
<tbody><tr>
<td valign="top"><?php foreach($wonders as $w) echo htmlspecialchars($w['village'])." (".$w['level'].")<br>"; if(empty($wonders)) echo "-";?></td>
<td valign="top"><?php foreach($wonders as $w) echo $w['level']."<br>"; if(empty($wonders)) echo "-";?></td>
<td valign="top"><?php foreach($artefacts as $a) echo htmlspecialchars($a['name'])." - ".htmlspecialchars($a['username']??'Natura')."<br>"; if(empty($artefacts)) echo "-";?></td>
<td valign="top"><?php foreach($artefacts as $a) echo htmlspecialchars($a['name'])." - ".htmlspecialchars($a['username']??'Natars')."<br>"; if(empty($artefacts)) echo "-";?></td>
</tr></tbody>
</table>
<br />
Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

+15 -1
View File
@@ -1725,7 +1725,7 @@ KEY `starv` (`starv`),
KEY `loyalty` (`loyalty`),
KEY `exp1` (`exp1`),
KEY `exp2` (`exp2`),
KEY `exp3` (`exp3`)
KEY `exp3` (`exp3`),
KEY `idx_owner_wref` (`owner`, `wref`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
@@ -1857,3 +1857,17 @@ CREATE TABLE IF NOT EXISTS `%PREFIX%debug_log` (
--
INSERT INTO `%PREFIX%debug_log` (`id`, `active`, `lvl_warning`, `lvl_notice`, `lvl_deprecated`, `lvl_fatal`, `max_size_mb`, `auto_off_hours`, `started_by`, `started_at`) VALUES
(1, 0, 1, 1, 1, 1, 5, 6, NULL, NULL);
--
-- Table structure for table `%PREFIX%milestones`
--
CREATE TABLE IF NOT EXISTS `%PREFIX%milestones` (
`type` varchar(20) NOT NULL COMMENT 'settle2,pop1000,artefact,ww,plan',
`uid` int(11) NOT NULL,
`username` varchar(64) NOT NULL,
`time` int(11) NOT NULL,
PRIMARY KEY (`type`),
KEY `uid` (`uid`),
KEY `time` (`time`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;