Overview
Comment:Correction bug couleur non définie avec un nombre important de comptes
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 2b37f6795255b096e73f78bebf8765567b5beb7a
User & Date: bohwaz on 2015-03-10 02:51:56
Other Links: manifest | tags
Context
2015-03-10
04:30
Upload de fichier fonctionnel check-in: 9ed4a2c5d0 user: bohwaz tags: trunk
02:51
Correction bug couleur non définie avec un nombre important de comptes check-in: 2b37f67952 user: bohwaz tags: trunk
2015-02-25
03:35
Refonte de l'éditeur du wiki avec prévisualisation, l'insertion de fichier suivra check-in: ff34dde8e3 user: bohwaz tags: trunk
Changes

Modified src/www/admin/compta/graph.php from [3dd49511bf] to [80ae2df104].

65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81

		foreach ($data as $line)
		{
			$line->color = $colors[$i++];
			$line->width = 2;
			$plot->add($line);

			if ($i > count($colors))
				$i = 0;
		}
	}

	Static_Cache::store('graph_' . $graph, $plot->output());
}

header('Content-Type: image/svg+xml');
Static_Cache::display('graph_' . $graph);







|









65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81

		foreach ($data as $line)
		{
			$line->color = $colors[$i++];
			$line->width = 2;
			$plot->add($line);

			if ($i >= count($colors))
				$i = 0;
		}
	}

	Static_Cache::store('graph_' . $graph, $plot->output());
}

header('Content-Type: image/svg+xml');
Static_Cache::display('graph_' . $graph);