diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-06-12 19:07:36 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-06-12 19:07:36 +0000 |
commit | b5d491624ededd09cd57ce03a61fedfcdc97b597 (patch) | |
tree | d8a4cd593cb0252a2e53e84da7ed86664541924b /modules/node | |
parent | 038a36b65260c28d104db830d78573915706bf4b (diff) | |
download | brdo-b5d491624ededd09cd57ce03a61fedfcdc97b597.tar.gz brdo-b5d491624ededd09cd57ce03a61fedfcdc97b597.tar.bz2 |
- Patch #268914 by catch: small usability improvements to taxonomy and content type overview pages.
Diffstat (limited to 'modules/node')
-rw-r--r-- | modules/node/content_types.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/content_types.inc b/modules/node/content_types.inc index a2214a057..754084d13 100644 --- a/modules/node/content_types.inc +++ b/modules/node/content_types.inc @@ -20,7 +20,7 @@ function node_overview_types() { if (node_hook($type, 'form')) { $type_url_str = str_replace('_', '-', $type->type); $row = array( - l($name, 'admin/build/node-type/' . $type_url_str), + check_plain($name), check_plain($type->type), filter_xss_admin($type->description), ); |