diff options
Diffstat (limited to 'update/library/trunk/subscription.php')
-rw-r--r-- | update/library/trunk/subscription.php | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/update/library/trunk/subscription.php b/update/library/trunk/subscription.php deleted file mode 100644 index 6fe0197..0000000 --- a/update/library/trunk/subscription.php +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | /* InstaDisc Update - A Four Island Project */ | ||
4 | |||
5 | include('instadisc.php'); // Make sure that if you move me away from instadisc.php that you update this include! | ||
6 | |||
7 | $id = (isset($_GET['id']) ? $_GET['id'] : 0); | ||
8 | |||
9 | echo('Subscription: ' . $idusSubscriptionURI[$id] . "\n"); | ||
10 | echo('Title: ' . $idusSubscriptionTitle[$id] . "\n"); | ||
11 | echo('Category: ' . $idusSubscriptionCategory[$id] . "\n"); | ||
12 | |||
13 | if ($idusActivationKey[$id] != '') | ||
14 | { | ||
15 | echo('Key: ' . $idusActivationKey[$id] . "\n"); | ||
16 | } | ||
17 | |||
18 | if ($idusEncryptionKey[$id] != '') | ||
19 | { | ||
20 | $verID = rand(1,65536); | ||
21 | |||
22 | echo('Verification: ' . md5($idusSubscriptionTitle[$id] . ':' . md5($idusEncryptionKey[$id]) . ':' . $verID) . "\n"); | ||
23 | echo('Verification-ID: ' . $verID . "\n"); | ||
24 | } | ||
25 | |||
26 | ?> | ||