Commit 46756d1fe785ec6fc34fd82f6136ec33638b18c6

Authored by Megan Watson
1 parent 7138a63f

Removed call home script - was added accidentally

PT: 2492586

Committed by: Megan Watson
Showing 1 changed file with 0 additions and 18 deletions
call_home.php deleted
1   -<?php
2   -/*
3   -* Data incoming format: <installation guid>|<user count>|<document count>|<KT version>|<KT edition>|<OS info>
4   -*/
5   -
6   -$data = isset($_REQUEST['system_info']) ? strip_tags($_REQUEST['system_info']) : '';
7   -
8   -if(empty($data)){
9   - exit(0);
10   -}
11   -
12   -$file = 'var/system_info.txt';
13   -$fp = fopen($file, 'a');
14   -fwrite($fp, $data."\n");
15   -fclose($fp);
16   -
17   -exit(0);
18   -?>
19 0 \ No newline at end of file