diff options
author | Dries Buytaert <dries@buytaert.net> | 2002-12-31 12:34:07 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2002-12-31 12:34:07 +0000 |
commit | de95001c9291d6f2e66374975b793f84dc155aca (patch) | |
tree | dd57be3f08caf0e32a828bb4961396c79029c0ba /modules/taxonomy | |
parent | 8cb66b212ef4df3f24c22f2ab143f2141788a74f (diff) | |
download | brdo-de95001c9291d6f2e66374975b793f84dc155aca.tar.gz brdo-de95001c9291d6f2e66374975b793f84dc155aca.tar.bz2 |
- Tidied up the use of check_output(). Might make rendering pages a bit
snappier (performance improvement).
Diffstat (limited to 'modules/taxonomy')
-rw-r--r-- | modules/taxonomy/taxonomy.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index 8a61d2b71..9c6f051ad 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -276,7 +276,7 @@ function taxonomy_overview() { if ($tree) { unset($data); foreach ($tree as $term) { - $data .= _taxonomy_depth($term->depth) ." ". $term->name ." (". la(t("edit term"), array("mod" => "taxonomy", "op" => "edit", "type" => "term", "id" => check_output($term->tid))) .")<br />"; + $data .= _taxonomy_depth($term->depth) ." ". $term->name ." (". la(t("edit term"), array("mod" => "taxonomy", "op" => "edit", "type" => "term", "id" => $term->tid)) .")<br />"; } $rows[] = array(array("data" => $data, "colspan" => 5)); } |