From 861e3230f0154e6a5942698adedf18d5eb0e0b8a Mon Sep 17 00:00:00 2001 From: Matthijs Kuiper Date: Wed, 10 Jan 2018 20:08:33 +0100 Subject: Move imaegs to assets folder --- html/pages/graph_mbreakdown.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'html/pages/graph_mbreakdown.php') diff --git a/html/pages/graph_mbreakdown.php b/html/pages/graph_mbreakdown.php index 172b419..677e0c1 100755 --- a/html/pages/graph_mbreakdown.php +++ b/html/pages/graph_mbreakdown.php @@ -104,7 +104,7 @@ echo ' for ($i = 0; $i <= 23; $i++) { if (!isset($gb_hour[$i])) $gb_hour[$i] = 0; $title = $gb_hour[$i] .' ('. get_dp($gb_hour[$i] / $hour_sum * 100) .' %)'; - echo ''. $title .''; + echo ''. $title .''; } echo ''; @@ -113,7 +113,7 @@ echo ''; for ($i = 0; $i <= 6; $i++) { if (!isset($gb_day[$i])) $gb_day[$i] = 0; $title = $gb_day[$i] .' ('. get_dp($gb_day[$i] / $day_sum * 100) .' %)'; - echo ''. $title .''; + echo ''. $title .''; } echo ''; @@ -122,7 +122,7 @@ echo ''; for ($i = 1; $i <= 12; $i++) { if (!isset($gb_month[$i])) $gb_month[$i] = 0; $title = $gb_month[$i] .' ('. get_dp($gb_month[$i] / $month_sum * 100) .' %)'; - echo ''. $title .''; + echo ''. $title .''; } echo ''; @@ -216,14 +216,14 @@ for ($i = 0; $i < $max_cntry; $i++) { if (!isset($gb_hour[$i])) $gb_hour[$i] = 0; $country = explode(";",$gb_country[$i]); $title = $a_countries[$country[0]] .': ' . $country[1] . ' ('. get_dp($country[1] / $country_sum * 100) .' %)'; - echo ''. $title .''; + echo ''. $title .''; $x += $country[1]; } if($others){ $countries_left = $country_sum - $x; $title = 'Other Countries: ' . $countries_left . ' ('. get_dp($countries_left / $country_sum * 100) .' %)'; - echo ''. $title .''; + echo ''. $title .''; }; echo ''; -- cgit