summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-11-15 11:40:57 +0400
committerAndrew Dolgov <[email protected]>2011-11-15 11:40:57 +0400
commite0d91d846dd5ac42a95a0832777cc76aaf579bc2 (patch)
tree5568c9cd6ad6d569cd7c15efb1c2c1d15e1e210c /modules
parent507426ef6e5c5921d68a20390fa4d7c32a23d780 (diff)
experimental split of public calls into public.php (refs #389)
Diffstat (limited to 'modules')
-rw-r--r--modules/backend-rpc.php2
-rw-r--r--modules/popup-dialog.php2
-rw-r--r--modules/pref-feeds.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/modules/backend-rpc.php b/modules/backend-rpc.php
index f6b66885e..f1bbd0698 100644
--- a/modules/backend-rpc.php
+++ b/modules/backend-rpc.php
@@ -215,7 +215,7 @@
if (PUBSUBHUBBUB_HUB) {
$rss_link = get_self_url_prefix() .
- "/backend.php?op=rss&id=-2&key=" .
+ "/public.php?op=rss&id=-2&key=" .
get_feed_access_key($link, -2, false);
$p = new Publisher(PUBSUBHUBBUB_HUB);
diff --git a/modules/popup-dialog.php b/modules/popup-dialog.php
index f65d005ff..26b2e7cf6 100644
--- a/modules/popup-dialog.php
+++ b/modules/popup-dialog.php
@@ -1094,7 +1094,7 @@
print __("You can share this article by the following unique URL:");
$url_path = get_self_url_prefix();
- $url_path .= "/backend.php?op=share&key=$uuid";
+ $url_path .= "/public.php?op=share&key=$uuid";
print "<div class=\"tagCloudContainer\">";
print "<a id='pub_opml_url' href='$url_path' target='_blank'>$url_path</a>";
diff --git a/modules/pref-feeds.php b/modules/pref-feeds.php
index b033a3787..bbae468bf 100644
--- a/modules/pref-feeds.php
+++ b/modules/pref-feeds.php
@@ -1520,7 +1520,7 @@
print "<p>".__('Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the URL specified below.')."</p>";
$rss_url = '-2::' . htmlspecialchars(get_self_url_prefix() .
- "/backend.php?op=rss&id=-2&view-mode=all_articles");;
+ "/public.php?op=rss&id=-2&view-mode=all_articles");;
print "<button dojoType=\"dijit.form.Button\" onclick=\"return displayDlg('generatedFeed', '$rss_url')\">".
__('Display URL')."</button> ";