diff options
author | Silvio <silvio@socioambiental.org> | 2013-11-18 15:24:55 -0200 |
---|---|---|
committer | Silvio <silvio@socioambiental.org> | 2013-11-18 15:24:55 -0200 |
commit | 7c0a773abf43c6e971d81740d28373803fbf7530 (patch) | |
tree | 7c575c474c59c22f67d69ede979cf2c43b537831 | |
parent | 79eb4659e30d2c1c2a1ad1aaa49d457a8517a5da (diff) | |
download | jquery_drawer-7c0a773abf43c6e971d81740d28373803fbf7530.tar.gz jquery_drawer-7c0a773abf43c6e971d81740d28373803fbf7530.tar.bz2 |
Output when there's no content
-rw-r--r-- | jquery_drawer.module | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/jquery_drawer.module b/jquery_drawer.module index 1f0ea47..ab33aef 100644 --- a/jquery_drawer.module +++ b/jquery_drawer.module @@ -194,6 +194,9 @@ function jquery_drawer_page($tid = NULL) { $output .= taxonomy_node_tree_list($term, 'jquery_drawer', 'hidden', $base); } } + else { + $output .= t('No content exists for this topic yet.'); + } } $output .= '</ul></li>'; |