mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-27 07:58:49 +01:00
Merge remote branch 'origin/android_branch' into android_branch
This commit is contained in:
commit
6b600f4d9b
1 changed files with 3 additions and 1 deletions
|
@ -84,6 +84,7 @@ $cols = array( new Column("dead", "D", "identity", false ),
|
|||
new Column("room", "Room", "identity", false ),
|
||||
new Column("lang", "Lang", "int_to_lang", false ),
|
||||
new Column("ntotal", "Tot", "identity", false ),
|
||||
new Column("clntVers", "CV", "identity", true ),
|
||||
new Column("nperdevice", "NP", "identity", true ),
|
||||
new Column("ack", "A", "identity", true ),
|
||||
new Column("nsent", "Sent", "identity", false ),
|
||||
|
@ -137,7 +138,8 @@ while ( $row = pg_fetch_array($result) ) {
|
|||
for ( $devIndex = 0; $devIndex < $nrows; ++$devIndex ) {
|
||||
echo "<tr class=\"" . ((0 == ($count % 2)) ? "even" : "odd") . "\">";
|
||||
if ( 0 == $devIndex ) {
|
||||
echo "<td rowspan=$nrows>$count</td>";
|
||||
$visCount = $count + 1;
|
||||
echo "<td rowspan=$nrows>$visCount</td>";
|
||||
}
|
||||
foreach ( $cols as $index => $col ) {
|
||||
$col->printTD( $devIndex, $nrows, $row[$index] );
|
||||
|
|
Loading…
Add table
Reference in a new issue