blob: 113d3cc8df38fdb8f2052e5381bf99ebb907c0af (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?php
/* InstaDisc Update - A Four Island Project */
include('instadisc.php'); // Make sure that if you move me away from instadisc.php that you update this include!
echo('Subscription: ' . $idusSubscriptionURI . "\n");
echo('Title: ' . $idusSubscriptionTitle . "\n");
echo('Category: ' . $idusSubscriptionCategory . "\n");
if ($idusActivationKey != '')
{
echo('Key: ' . $idusActivationKey . "\n");
}
if ($idusEncryptionPassword != '')
{
$verID = rand(1,65536);
echo('Verification: ' . md5(':' . md5($idusEncryptionPassword) . ':' . $verID) . "\n");
echo('Verification-ID: ' . $verID . "\n");
}
?>
|