diff options
| author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2008-09-06 22:42:07 +0000 |
|---|---|---|
| committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2008-09-06 22:42:07 +0000 |
| commit | 9c8c1d163cc74e51a46d17e5359723e71a23d1ee (patch) | |
| tree | b3c26dcf2f626a4e8908141157404ffc873dde6f /update/library/trunk/subscription.php | |
| parent | 4419c4c44b18eda0d3a04af882e50be069fee49d (diff) | |
| download | instadisc-9c8c1d163cc74e51a46d17e5359723e71a23d1ee.tar.gz instadisc-9c8c1d163cc74e51a46d17e5359723e71a23d1ee.tar.bz2 instadisc-9c8c1d163cc74e51a46d17e5359723e71a23d1ee.zip | |
Update: Centralized Central in Library
Also removed subscription.php due to the new subscription specification (#28) Refs #52 and #28
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 | ?> | ||
