diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-06-18 16:09:39 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-06-18 16:09:39 +0000 |
commit | aa308028aa570d15d3abf9c7679d7de16019b78b (patch) | |
tree | c7f87e5423007f088feb99149ebf2d16752631be /modules/node | |
parent | 8f9298577e7db9af6d34c3d69bd633a5c7e3de74 (diff) | |
download | brdo-aa308028aa570d15d3abf9c7679d7de16019b78b.tar.gz brdo-aa308028aa570d15d3abf9c7679d7de16019b78b.tar.bz2 |
- Patch #131026 by James et al: OpenID client support for Drupal!
Let this be the day where we help revolutionize the online society, and the
way websites and web services interoperate. Or something.
Diffstat (limited to 'modules/node')
-rw-r--r-- | modules/node/node.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index 091adbdc7..c253610d9 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -1383,7 +1383,7 @@ function node_filters() { } $filters['type'] = array('title' => t('type'), 'options' => node_get_types('names')); - + // The taxonomy filter if ($taxonomy = module_invoke('taxonomy', 'form_all', 1)) { $filters['category'] = array('title' => t('category'), 'options' => $taxonomy); |