diff options
Diffstat (limited to '')
-rw-r--r-- | detail.php | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -11,14 +11,14 @@ if (empty($_GET['x'])) | |||
11 | if (empty($_GET['y'])) | 11 | if (empty($_GET['y'])) |
12 | $_GET['y'] = $CONFIG['detail-heigth']; | 12 | $_GET['y'] = $CONFIG['detail-heigth']; |
13 | 13 | ||
14 | $host = validate_get($_GET['h'], 'host'); | 14 | $host = validate_get(GET('h'), 'host'); |
15 | $plugin = validate_get($_GET['p'], 'plugin'); | 15 | $plugin = validate_get(GET('p'), 'plugin'); |
16 | $pinstance = validate_get($_GET['pi'], 'pinstance'); | 16 | $pinstance = validate_get(GET('pi'), 'pinstance'); |
17 | $type = validate_get($_GET['t'], 'type'); | 17 | $type = validate_get(GET('t'), 'type'); |
18 | $tinstance = validate_get($_GET['ti'], 'tinstance'); | 18 | $tinstance = validate_get(GET('ti'), 'tinstance'); |
19 | $width = $_GET['x']; | 19 | $width = GET('x'); |
20 | $heigth = $_GET['y']; | 20 | $heigth = GET('y'); |
21 | $seconds = $_GET['s']; | 21 | $seconds = GET('s'); |
22 | 22 | ||
23 | html_start(); | 23 | html_start(); |
24 | 24 | ||