Diff for /ETA/forumsList.php3 between versions 1.3 and 1.4

version 1.3, 1999/06/02 00:57:17 version 1.4, 1999/06/02 15:09:52
Line 63  include ($domain.'pre-template.tpl'); Line 63  include ($domain.'pre-template.tpl');
   
 # -------------------- render data --------------------  # -------------------- render data --------------------
   
   $oldDomain = $domain;
 while ($row = mysql_fetch_row($result)) {  while ($row = mysql_fetch_row($result)) {
     $forums_id = $row[0];      $forums_id = $row[0];
     $T_forums_id = '<p align="center"><a href="'.formatRef('forums.php3', array('forums_id'=>$forums_id)).'">&lt;view&gt;</a></p>';      $T_forums_id = '<p align="center"><a href="'.formatRef('forums.php3', array('forums_id'=>$forums_id)).'">&lt;view&gt;</a></p>';
     $T_forums_path = $row[1];      if ($row[1]=='/')
           $domain = "";
       else
           $domain = $row[1];
       $T_forums_path = '<a href="'.formatRef('issuesList.php3', array()).'">' .$row[1] .'</a>';
     $T_forums_schema = render('forums_schema', 0, 'text', $row[3], array('size'=>70, 'href'=>formatRef('schemas.php3', array('schemas_id'=>$row[2]))));      $T_forums_schema = render('forums_schema', 0, 'text', $row[3], array('size'=>70, 'href'=>formatRef('schemas.php3', array('schemas_id'=>$row[2]))));
     $T_forums_contact = render('contacts_realname', 0, 'text', $row[5], array('size'=>30, 'href'=>formatRef('contacts.php3', array('contacts_id'=>$row[4]))));      $T_forums_contact = render('contacts_realname', 0, 'text', $row[5], array('size'=>30, 'href'=>formatRef('contacts.php3', array('contacts_id'=>$row[4]))));
     $T_forums_description = $row[6];      $T_forums_description = $row[6];
Line 79  while ($row = mysql_fetch_row($result)) Line 84  while ($row = mysql_fetch_row($result))
         <td><?php echo $T_forums_description?></td>          <td><?php echo $T_forums_description?></td>
     </tr>      </tr>
 <?php  <?php
   $domain = $oldDomain;
 } ?>  } ?>
 </tbody>  </tbody>
 </table>  </table>

Removed from v.1.3  
changed lines
  Added in v.1.4


Webmaster