Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 2958 | Rev 2960 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 2958 Rev 2959
Línea 265... Línea 265...
265
                usort($items, function ($a, $b) {
265
                usort($items, function ($a, $b) {
Línea 266... Línea 266...
266
                    
266
                    
267
                    if ($a['time'] == $b['time']) {
267
                    if ($a['time'] == $b['time']) {
268
                        return 0;
268
                        return 0;
269
                    } else {
269
                    } else {
270
                        return $a['time'] > $b['time'] ? -1 : 1;
270
                        return $a['time'] < $b['time'] ? -1 : 1;
Línea 271... Línea 271...
271
                    }
271
                    }
Línea 272... Línea 272...
272
                
272