aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio <silvio@socioambiental.org>2013-11-19 16:39:25 -0200
committerSilvio <silvio@socioambiental.org>2013-11-19 16:39:25 -0200
commit474f37e133d455bd6dbea98bd6b414ec8c716921 (patch)
tree1409bf760b810661d62099666bf07d642a855305
parentd8d9193156a99bea26e6af6599f026abc7a1e56d (diff)
downloadjquery_drawer-474f37e133d455bd6dbea98bd6b414ec8c716921.tar.gz
jquery_drawer-474f37e133d455bd6dbea98bd6b414ec8c716921.tar.bz2
Minor fix
-rw-r--r--jquery_drawer.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/jquery_drawer.module b/jquery_drawer.module
index f382b66..dea6197 100644
--- a/jquery_drawer.module
+++ b/jquery_drawer.module
@@ -108,7 +108,7 @@ function jquery_drawer_check_empty($tid) {
function jquery_drawer_select_nodes($tid) {
static $cache = array();
- if (empty($cache[$tid])) {
+ if (isset($cache[$tid])) {
$cache[$tid] = taxonomy_select_nodes(array($tid));
}