From d5d2acc7d80920eef5f0ed779a3738a12d5db348 Mon Sep 17 00:00:00 2001 From: msquare Date: Sat, 1 Oct 2016 10:48:19 +0200 Subject: improve code style --- includes/pages/admin_import.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'includes/pages/admin_import.php') diff --git a/includes/pages/admin_import.php b/includes/pages/admin_import.php index 8643dc55..2c36e681 100644 --- a/includes/pages/admin_import.php +++ b/includes/pages/admin_import.php @@ -385,7 +385,7 @@ function shifts_printable($shifts, $shifttypes) { return $shifts_printable; } -function shift_sort($a, $b) { - return ($a['start'] < $b['start']) ? - 1 : 1; +function shift_sort($shift_a, $shift_b) { + return ($shift_a['start'] < $shift_b['start']) ? - 1 : 1; } ?> -- cgit v1.2.3-54-g00ecf