quand on clique sur un fichier depuis la liste, le contexte est bien
authorWebmaster Polytechnique.org <web@polytechnique.org>
Sat, 7 Dec 2002 22:50:34 +0000 (22:50 +0000)
committerWebmaster Polytechnique.org <web@polytechnique.org>
Sat, 7 Dec 2002 22:50:34 +0000 (22:50 +0000)
    initialisé (jeremy)

depview/list.php

index cd1ee4b..fc02312 100644 (file)
@@ -23,13 +23,13 @@ switch ($order) {
 </tr>
 
 <?php
-$res = mysql_query("select id,path,type from file $sql_suffix");
-while (list($id,$path,$type)=mysql_fetch_row($res)) {
+$res = mysql_query("select id,path,type,dir from file $sql_suffix");
+while (list($id,$path,$type,$dir)=mysql_fetch_row($res)) {
 ?>
 <tr class="<?php echo $type; ?>">
   <td><?php echo $id; ?></td>
   <td><?php echo $type; ?></td> 
-  <td><a href="file.php?id=<?php echo $id; ?>"><?php echo $path; ?></a></td>
+  <td><a href="file.php?id=<?php echo $id; ?>&d=<?php echo $dir; ?>"><?php echo $path; ?></a></td>
 </tr>
 <?php
 }