about summary refs log tree commit diff stats
path: root/update/library/trunk/subscription.php
diff options
context:
space:
mode:
Diffstat (limited to 'update/library/trunk/subscription.php')
-rw-r--r--update/library/trunk/subscription.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/update/library/trunk/subscription.php b/update/library/trunk/subscription.php new file mode 100644 index 0000000..113d3cc --- /dev/null +++ b/update/library/trunk/subscription.php
@@ -0,0 +1,24 @@
1<?php
2
3/* InstaDisc Update - A Four Island Project */
4
5include('instadisc.php'); // Make sure that if you move me away from instadisc.php that you update this include!
6
7echo('Subscription: ' . $idusSubscriptionURI . "\n");
8echo('Title: ' . $idusSubscriptionTitle . "\n");
9echo('Category: ' . $idusSubscriptionCategory . "\n");
10
11if ($idusActivationKey != '')
12{
13 echo('Key: ' . $idusActivationKey . "\n");
14}
15
16if ($idusEncryptionPassword != '')
17{
18 $verID = rand(1,65536);
19
20 echo('Verification: ' . md5(':' . md5($idusEncryptionPassword) . ':' . $verID) . "\n");
21 echo('Verification-ID: ' . $verID . "\n");
22}
23
24?>