@@ -264,7 +264,7 @@ discard block |
||
264 | 264 | foreach ($dataGroup as $row) |
265 | 265 | { |
266 | 266 | $exploded = explode('.', $row['name']); |
267 | - $version = $exploded[0] . '.' . (isset($exploded[1]) ? $exploded[1] : '0'); |
|
267 | + $version = $exploded[0].'.'.(isset($exploded[1]) ? $exploded[1] : '0'); |
|
268 | 268 | |
269 | 269 | // If the container does not exist, add it |
270 | 270 | if (!isset($counts[$version])) |
@@ -349,7 +349,7 @@ discard block |
||
349 | 349 | |
350 | 350 | foreach ($items as $item) |
351 | 351 | { |
352 | - $data[$this->source][$item['db_type']][$item['db_version']]= $item['count']; |
|
352 | + $data[$this->source][$item['db_type']][$item['db_version']] = $item['count']; |
|
353 | 353 | $this->totalItems += $item['count']; |
354 | 354 | } |
355 | 355 |