summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-08-10 06:52:11 +0100
committerAndrew Dolgov <[email protected]>2007-08-10 06:52:11 +0100
commit17a756d1932dd00f8ba6fc2eba63f01712669409 (patch)
tree35da90bba4e798856726c849d296572298b76ec0 /functions.php
parent6af274f68dc65f6601b70302eb3f79a73a77ae88 (diff)
article_publish_url: syntax fix
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/functions.php b/functions.php
index eb14f52e5..51c2dd17e 100644
--- a/functions.php
+++ b/functions.php
@@ -4216,8 +4216,7 @@
function article_publish_url($link) {
- $url_path = 'http://' . $_SERVER["HTTP_HOST"] . \
- parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
+ $url_path = 'http://' . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
$url_path .= "?op=publish&key=" . get_pref($link, "_PREFS_PUBLISH_KEY");