diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-11-23 22:20:41 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-11-23 22:20:41 +0000 |
commit | 9574766ad8f8810baf42a81ae105984254f0fc0a (patch) | |
tree | 12a5015957b5d6cdb3c4f24680a5bf23bab0e67c /modules/blogapi/blogapi.module | |
parent | e19a3cf42d73942e37ca644f8ba5fa271b983e3d (diff) | |
download | brdo-9574766ad8f8810baf42a81ae105984254f0fc0a.tar.gz brdo-9574766ad8f8810baf42a81ae105984254f0fc0a.tar.bz2 |
- Patch by Stefan: wrapped the help texts in <p></p> tags. Helps improve consistency.
Diffstat (limited to 'modules/blogapi/blogapi.module')
-rw-r--r-- | modules/blogapi/blogapi.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/blogapi/blogapi.module b/modules/blogapi/blogapi.module index 207592798..a85cfa919 100644 --- a/modules/blogapi/blogapi.module +++ b/modules/blogapi/blogapi.module @@ -12,7 +12,7 @@ function blogapi_help($section) { switch ($section) { case 'admin/help#blogapi': - return t('This module adds support for several XML-RPC based blogging APIs. Specifically, it currently implements the %bloggerAPI, %metaweblogAPI, and most of the %moveabletype extensions. This allows users to contribute to drupal using external GUI applications, which can often offer richer functionality that online forms based editing', array('%bloggerAPI' => '<a href="http://www.blogger.com/developers/api/1_docs/">Blogger API</a>', '%metaweblogAPI' => '<a href="http://www.xmlrpc.com/metaWeblogApi">MetaWeblog API</a>', '%moveabletype' => '<a href="http://www.movabletype.org/docs/mtmanual_programmatic.html">Moveable Type API</a>')); + return t('<p>This module adds support for several XML-RPC based blogging APIs. Specifically, it currently implements the %bloggerAPI, %metaweblogAPI, and most of the %moveabletype extensions. This allows users to contribute to drupal using external GUI applications, which can often offer richer functionality that online forms based editing.</p>', array('%bloggerAPI' => '<a href="http://www.blogger.com/developers/api/1_docs/">Blogger API</a>', '%metaweblogAPI' => '<a href="http://www.xmlrpc.com/metaWeblogApi">MetaWeblog API</a>', '%moveabletype' => '<a href="http://www.movabletype.org/docs/mtmanual_programmatic.html">Moveable Type API</a>')); case 'admin/modules#description': return t('Enable users to post using applications that support XML-RPC blog APIs.'); } |