diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2008-09-06 23:19:27 +0000 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2008-09-06 23:19:27 +0000 |
commit | 54595b14c1f67b9296ea96dad0741c900d01d1fb (patch) | |
tree | 772ab3b1e68b03e537e2f3b700b73a644357f504 /update/plugin/wordpress/trunk/instadisc/subscription.php | |
parent | 621f64b1f50ce97c59c08b61885cd7ed3b354583 (diff) | |
download | instadisc-54595b14c1f67b9296ea96dad0741c900d01d1fb.tar.gz instadisc-54595b14c1f67b9296ea96dad0741c900d01d1fb.tar.bz2 instadisc-54595b14c1f67b9296ea96dad0741c900d01d1fb.zip |
Update: Centralized Central in Wordpress
Also removed subscription.php due to the new subscription specification (#28) Refs #52 and #28
Diffstat (limited to 'update/plugin/wordpress/trunk/instadisc/subscription.php')
-rw-r--r-- | update/plugin/wordpress/trunk/instadisc/subscription.php | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/update/plugin/wordpress/trunk/instadisc/subscription.php b/update/plugin/wordpress/trunk/instadisc/subscription.php deleted file mode 100644 index d7ffa86..0000000 --- a/update/plugin/wordpress/trunk/instadisc/subscription.php +++ /dev/null | |||
@@ -1,44 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | include('../../../wp-blog-header.php'); | ||
4 | |||
5 | if (isset($_GET['comment'])) | ||
6 | { | ||
7 | echo('Subscription: '); | ||
8 | echo(get_option('siteurl')); | ||
9 | echo('/comments/'); | ||
10 | echo("\n"); | ||
11 | |||
12 | echo('Title: '); | ||
13 | echo(get_option('instaDisc_subscription_title')); | ||
14 | echo("\n"); | ||
15 | |||
16 | echo('Category: blog-comment'); | ||
17 | echo("\n"); | ||
18 | |||
19 | if (get_option('instaDisc_comment_centralServer_activationKey') != '') | ||
20 | { | ||
21 | echo('Key: '); | ||
22 | echo(get_option('instaDisc_comment_centralServer_activationKey')); | ||
23 | } | ||
24 | } else { | ||
25 | echo('Subscription: '); | ||
26 | echo(get_option('siteurl')); | ||
27 | echo('/'); | ||
28 | echo("\n"); | ||
29 | |||
30 | echo('Title: '); | ||
31 | echo(get_option('instaDisc_subscription_title')); | ||
32 | echo("\n"); | ||
33 | |||
34 | echo('Category: blog-post'); | ||
35 | echo("\n"); | ||
36 | |||
37 | if (get_option('instaDisc_blogPost_centralServer_activationKey') != '') | ||
38 | { | ||
39 | echo('Key: '); | ||
40 | echo(get_option('instaDisc_blogPost_centralServer_activationKey')); | ||
41 | } | ||
42 | } | ||
43 | |||
44 | ?> | ||