coding guidline fix.
authorDan Marsden <dan@danmarsden.com>
Fri, 28 Apr 2017 04:29:09 +0000 (16:29 +1200)
committerDan Marsden <dan@danmarsden.com>
Fri, 28 Apr 2017 04:29:09 +0000 (16:29 +1200)
locallib.php

index b78fd45..0a98e8a 100644 (file)
@@ -371,7 +371,7 @@ function attendance_random_string($length=6) {
     $string = '';
     for ($i = 0; $i < $length; $i++) {
         $rand = ord($randombytes[$i]);
-        $string .= substr($pool, ($rand%($poollen)), 1);
+        $string .= substr($pool, ($rand % ($poollen)), 1);
     }
     return $string;
 }
\ No newline at end of file