diff options
author | Silvio <silvio@socioambiental.org> | 2013-11-19 16:42:39 -0200 |
---|---|---|
committer | Silvio <silvio@socioambiental.org> | 2013-11-19 16:42:39 -0200 |
commit | a7206c696dd2d7a203013774a7051a317839569a (patch) | |
tree | 45c3ededd13dc3d7406222a70e0893f795c956fb | |
parent | f6faa7cd762c428169da71686a60cefab77916bf (diff) | |
download | jquery_drawer-a7206c696dd2d7a203013774a7051a317839569a.tar.gz jquery_drawer-a7206c696dd2d7a203013774a7051a317839569a.tar.bz2 |
Minor fix (4)
-rw-r--r-- | jquery_drawer.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jquery_drawer.module b/jquery_drawer.module index 4668226..28a7ea9 100644 --- a/jquery_drawer.module +++ b/jquery_drawer.module @@ -112,7 +112,7 @@ function jquery_drawer_select_nodes($tid = NULL) { return; } - if (isset($cache[$tid])) { + if (!isset($cache[$tid])) { $cache[$tid] = taxonomy_select_nodes(array($tid)); } |