[DOC-WEB] [web-doc] master: Remove uninteresting/incorrect information (#53)

[email protected] (Jim Winstead via GitHub) Tue, 22 Oct 2024 23:44:35 +0000
Newsgroups php.doc.web
Message-ID <[email protected]>
Author: Jim Winstead (jimwins)
Committer: GitHub (web-flow)
Pusher: jimwins
Date: 2024-10-22T16:41:24-07:00

Commit: https://github.com/php/web-doc/commit/c16c79db49d0144a7b4e8e42b96dc33aa0c1a0fe
Raw diff: https://github.com/php/web-doc/commit/c16c79db49d0144a7b4e8e42b96dc33aa0c1a0fe.diff

Remove uninteresting/incorrect information (#53)

Changed paths:
  M  www/revcheck.php


Diff:

diff --git a/www/revcheck.php b/www/revcheck.php
index ab698d7..fd0834b 100644
--- a/www/revcheck.php
+++ b/www/revcheck.php
@@ -192,17 +192,16 @@
      } else {
          $num = count($misstags);
          echo '<table class="c">';
-         echo '<tr><th rowspan="2">Files without EN-Revision number ('.$num.' files):</th><th colspan="3">Sizes in kB</th></tr>';
-         echo '<tr><th>en</th><th>'.$lang.'</th><th>diff</th></tr>';
+         echo '<tr><th>Files without EN-Revision number ('.$num.' files):</th></tr>';
 
          $last_dir = false;
 
          foreach ($misstags as $row) {
              if (!$last_dir || $last_dir != $row['dir']) {
-             echo '<tr><th colspan="4">'.$row['dir'].'</th></tr>';
+             echo '<tr><th>'.$row['dir'].'</th></tr>';
              $last_dir = $row['dir'];
           }
-          echo '<tr><td>'.$row['name'].'</td><td>'.$row['en_size'].'</td><td>'.$row['trans_size'].'</td><td>'.(intval($row['en_size'] - $row['trans_size'])).'</td></tr>';
+          echo '<tr><td>'.$row['name'].'</td></tr>';
      }
      echo '</table>';
  }