gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r20378 - gauger/web


From: gnunet
Subject: [GNUnet-SVN] r20378 - gauger/web
Date: Thu, 8 Mar 2012 19:02:55 +0100

Author: bartpolot
Date: 2012-03-08 19:02:55 +0100 (Thu, 08 Mar 2012)
New Revision: 20378

Modified:
   gauger/web/io.php
Log:
- Adapted to changes in PHP 5.4 specification

Modified: gauger/web/io.php
===================================================================
--- gauger/web/io.php   2012-03-08 17:58:05 UTC (rev 20377)
+++ gauger/web/io.php   2012-03-08 18:02:55 UTC (rev 20378)
@@ -245,12 +245,12 @@
 
     ksort($hosts);
     foreach ($hosts as $host => $a) {
-        sort(&$hosts[$host]);
+        sort($hosts[$host]);
     }
     foreach ($metrics_c as $id => $a) {
-        ksort(&$metrics_c[$id]);
+        ksort($metrics_c[$id]);
     }
-    ksort(&$metrics_c);
+    ksort($metrics_c);
     if (array_key_exists('', $metrics_c)) {
         $others = array_shift($metrics_c);
         $metrics_c[''] = $others;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]