aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/detail.php
diff options
context:
space:
mode:
Diffstat (limited to 'detail.php')
-rw-r--r--detail.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/detail.php b/detail.php
index d153768..e9e80a0 100644
--- a/detail.php
+++ b/detail.php
@@ -11,14 +11,14 @@ if (empty($_GET['x']))
11if (empty($_GET['y'])) 11if (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
23html_start(); 23html_start();
24 24