diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-08-05 05:40:53 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-08-05 05:40:53 +0000 |
commit | c6b1eaa20d665ca608d31536f995451634be3963 (patch) | |
tree | fa98294c837188de95a16674ce6f23a0856c6e44 /modules/blogapi/blogapi.module | |
parent | 54d45d6eb7d629f7bf8e75c4feaef19f40a8eede (diff) | |
download | brdo-c6b1eaa20d665ca608d31536f995451634be3963.tar.gz brdo-c6b1eaa20d665ca608d31536f995451634be3963.tar.bz2 |
- Patch #9775 by TDobes: consistency operation. Changed to "edit foo," "delete foo," and "view foo" links into simply "edit," "delete," and "view".
Diffstat (limited to 'modules/blogapi/blogapi.module')
-rw-r--r-- | modules/blogapi/blogapi.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/blogapi/blogapi.module b/modules/blogapi/blogapi.module index 9218e8fb3..41f7eebde 100644 --- a/modules/blogapi/blogapi.module +++ b/modules/blogapi/blogapi.module @@ -143,7 +143,7 @@ function blogapi_new_post($req_params) { $nid = node_save($node); if ($nid) { - watchdog('special', t('%node-type: added "%node-title" using blog API', array('%node-type' => t("$node->type"), '%node-title' => $node->title)), l(t('view post'), "node/$nid")); + watchdog('special', t('%node-type: added "%node-title" using blog API', array('%node-type' => t("$node->type"), '%node-title' => $node->title)), l(t('view'), "node/$nid")); return new xmlrpcresp(new xmlrpcval($nid, 'string')); } @@ -203,7 +203,7 @@ function blogapi_edit_post($req_params) { } $nid = node_save($node); if ($nid) { - watchdog('special', t('%node-type: updated "%node-title" using blog API', array('%node-type' => t("$node->type"), '%node-title' => $node->title)), l(t('view post'), "node/$nid")); + watchdog('special', t('%node-type: updated "%node-title" using blog API', array('%node-type' => t("$node->type"), '%node-title' => $node->title)), l(t('view'), "node/$nid")); return new xmlrpcresp(new xmlrpcval(true, 'boolean')); } |