avec le bon chemin, ça ira mieux ;-)
[old-projects.git] / depview / list.php
index fc02312..38106b0 100644 (file)
@@ -1,6 +1,8 @@
 <?php
 require("config.inc.php");
 require("header.inc.php");
+
+$order = isset($_REQUEST['order']) ? $_REQUEST['order'] : "p";
 switch ($order) {
   case "i":
     $sql_suffix = "order by id";
@@ -9,7 +11,6 @@ switch ($order) {
     $sql_suffix = "order by type";
     break;
   case "p":
-  default:
     $sql_suffix = "order by path";
     break;
 }
@@ -17,9 +18,9 @@ switch ($order) {
 
 <table>
 <tr>
-  <th><a href="<?php echo $PHP_SELF; ?>?order=i">id</a></th>
-  <th><a href="<?php echo $PHP_SELF; ?>?order=t">type</a></th>
-  <th><a href="<?php echo $PHP_SELF; ?>?order=p">path</a></th>
+  <th><a href="<?php echo $_SERVER['PHP_SELF']; ?>?order=i">id</a></th>
+  <th><a href="<?php echo $_SERVER['PHP_SELF']; ?>?order=t">type</a></th>
+  <th><a href="<?php echo $_SERVER['PHP_SELF']; ?>?order=p">path</a></th>
 </tr>
 
 <?php