summaryrefslogtreecommitdiff
path: root/modules/blogapi
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-02-15 11:40:19 +0000
committerDries Buytaert <dries@buytaert.net>2007-02-15 11:40:19 +0000
commitdc5843bd30a614cb074f70750ba2f631e61f8cb8 (patch)
treecd977b194f73b16e3dc1dfb40c9c9c5c1988f47f /modules/blogapi
parente57b926e8d4385e399731159bd90f862962a86ab (diff)
downloadbrdo-dc5843bd30a614cb074f70750ba2f631e61f8cb8.tar.gz
brdo-dc5843bd30a614cb074f70750ba2f631e61f8cb8.tar.bz2
- Patch #111347 by Steven: refactor url() and l().
Diffstat (limited to 'modules/blogapi')
-rw-r--r--modules/blogapi/blogapi.module12
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/blogapi/blogapi.module b/modules/blogapi/blogapi.module
index f55b54ce3..e78c30b2f 100644
--- a/modules/blogapi/blogapi.module
+++ b/modules/blogapi/blogapi.module
@@ -138,7 +138,7 @@ function blogapi_blogger_get_users_blogs($appid, $username, $password) {
$types = _blogapi_get_node_types();
$structs = array();
foreach ($types as $type) {
- $structs[] = array('url' => url('blog/' . $user->uid, NULL, NULL, TRUE), 'blogid' => $type, 'blogName' => $user->name . ": " . $type);
+ $structs[] = array('url' => url('blog/' . $user->uid, array('absolute' => TRUE)), 'blogid' => $type, 'blogName' => $user->name . ": " . $type);
}
return $structs;
}
@@ -161,7 +161,7 @@ function blogapi_blogger_get_user_info($appkey, $username, $password) {
'firstname' => $name[0],
'nickname' => $user->name,
'email' => $user->mail,
- 'url' => url('blog/' . $user->uid, NULL, NULL, TRUE));
+ 'url' => url('blog/' . $user->uid, array('absolute' => TRUE)));
}
else {
return blogapi_error($user);
@@ -575,7 +575,7 @@ function blogapi_init() {
drupal_add_link(array('rel' => 'EditURI',
'type' => 'application/rsd+xml',
'title' => t('RSD'),
- 'href' => url('blogapi/rsd', NULL, NULL, TRUE)));
+ 'href' => url('blogapi/rsd', array('absolute' => TRUE))));
}
}
@@ -583,7 +583,7 @@ function blogapi_rsd() {
global $base_url;
$xmlrpc = $base_url .'/'. 'xmlrpc.php';
- $base = url('', NULL, NULL, TRUE);
+ $base = url('', array('absolute' => TRUE));
$blogid = 1; # until we figure out how to handle multiple bloggers
drupal_set_header('Content-Type: application/rsd+xml; charset=utf-8');
@@ -658,8 +658,8 @@ function _blogapi_get_post($node, $bodies = TRUE) {
'dateCreated' => xmlrpc_date($node->created),
'title' => $node->title,
'postid' => $node->nid,
- 'link' => url('node/'.$node->nid, NULL, NULL, TRUE),
- 'permaLink' => url('node/'.$node->nid, NULL, NULL, TRUE),
+ 'link' => url('node/'.$node->nid, array('absolute' => TRUE)),
+ 'permaLink' => url('node/'.$node->nid, array('absolute' => TRUE)),
);
if ($bodies) {
if ($node->comment == 1) {