X-Git-Url: https://git-public.kairo.at/?p=php-utility-classes.git;a=blobdiff_plain;f=include%2Fclasses%2Frrdstat.php-class;h=7532f00bfc637d649eea5599543b89e7b372c159;hp=00ac8fb52e553780d66aa6fbd9c4f981d0c71c70;hb=7ce4eeadca043a77ab0735de1ec296c4be073cce;hpb=dc05b48c4be72b0977bca30d33d9a491cc29a094 diff --git a/include/classes/rrdstat.php-class b/include/classes/rrdstat.php-class index 00ac8fb..7532f00 100644 --- a/include/classes/rrdstat.php-class +++ b/include/classes/rrdstat.php-class @@ -966,15 +966,15 @@ class rrdstat { if (isset($pconf['stats_url_add'])) { $sURL_add = $pconf['stats_url_add']; } else { $sURL_add = '&sub=%s'; } - $default_num_rows = $GLOBALS['ua']->isMobile()?1:2; - $num_rows = is_numeric($pconf['num_rows'])?$pconf['num_rows']:$default_num_rows; - $num_cols = ceil(count($stats)/$num_rows); + $default_num_cols = $GLOBALS['ua']->isMobile()?1:2; + $num_cols = is_numeric($pconf['num_rows'])?$pconf['num_rows']:$default_num_cols; + $num_rows = ceil(count($stats)/$num_cols); $out .= ''."\n"; - for ($col = 0; $col < $num_cols; $col++) { + for ($row = 0; $row < $num_rows; $row++) { $out .= ''."\n"; - for ($row = 0; $row < $num_rows; $row++) { - $idx = $col * $num_rows + $row; + for ($col = 0; $col < $num_cols; $col++) { + $idx = $row * $num_cols + $col; $out .= '
'."\n"; if ($idx < count($stats)) { @list($sname, $s_psub) = explode('|', $stats[$idx]['name'], 2);