Changeset 490
- Timestamp:
- 2008-07-18 12:39:55 (4 months ago)
- Files:
-
- trunk/www/html/include/cgi.php (added)
- trunk/www/html/include/chart.php (modified) (3 diffs)
- trunk/www/html/include/roar_api.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/www/html/include/chart.php
r440 r490 10 10 $archives = get_archives('live'); 11 11 12 $width = 800;13 $height = 300;12 $width = get_numeric_param( "width", 800, 50, 2000 ); 13 $height = get_numeric_param( "height", 300, 50, 2000 ); 14 14 15 15 $graph = new Graph($width, $height, 'roar'); … … 92 92 $archives = get_archives('live'); 93 93 94 $width = 800;95 $height = 300;94 $width = get_numeric_param( "width", 800, 50, 2000 ); 95 $height = get_numeric_param( "height", 300, 50, 2000 ); 96 96 $max = 10; 97 97 … … 241 241 $archives = get_archives('live'); 242 242 243 $width = 800;244 $height = 300;243 $width = get_numeric_param( "width", 800, 50, 2000 ); 244 $height = get_numeric_param( "height", 300, 50, 2000 ); 245 245 246 246 $graph = new PieGraph($width, $height, 'roar'); trunk/www/html/include/roar_api.php
r489 r490 24 24 include("config.php"); 25 25 26 include("cgi.php"); 26 27 include("ldap.php"); 27 28 include("detect.php");