diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-08-07 21:00:26 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-08-07 21:00:26 +0000 |
commit | 97b1b743b97d84e542275c33f82e6ac467f03ce5 (patch) | |
tree | bc81c37a1fe93ca9a6c2c1f66fe408a5dcb325aa /modules/blogapi | |
parent | 360e0d321e843ea2c7283bc28bdb6b196509791d (diff) | |
download | brdo-97b1b743b97d84e542275c33f82e6ac467f03ce5.tar.gz brdo-97b1b743b97d84e542275c33f82e6ac467f03ce5.tar.bz2 |
- Patch #77375 from Zacker (holy smokes): fixed blogapi settings form.
Diffstat (limited to 'modules/blogapi')
-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 f34dd4c82..a13431aad 100644 --- a/modules/blogapi/blogapi.module +++ b/modules/blogapi/blogapi.module @@ -553,7 +553,7 @@ function blogapi_admin_settings() { '#description' => t('RSD or Really-Simple-Discovery is a mechanism which allows external blogger tools to discover the APIs they can use to interact with Drupal. Here you can set the preferred method for blogger tools to interact with your site. The common XML-RPC engines are Blogger, MetaWeblog and Movabletype. If you are not sure which is the correct setting, choose Blogger.') ); - $node_types = node_get_types(); + $node_types = node_get_types('names'); $defaults = isset($node_types['blog']) ? array('blog' => 1) : array(); $form['blogapi_node_types'] = array( '#type' => 'checkboxes', |