From 73aeaa3cad992131751f1c961955c836d42b6ac1 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Sat, 4 Apr 2009 17:41:15 +0000 Subject: [PATCH] "add link title only, if id is numeric" --- etemplate/inc/class.vfs_widget.inc.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/etemplate/inc/class.vfs_widget.inc.php b/etemplate/inc/class.vfs_widget.inc.php index c059f77793..10042f49bb 100644 --- a/etemplate/inc/class.vfs_widget.inc.php +++ b/etemplate/inc/class.vfs_widget.inc.php @@ -146,8 +146,7 @@ class vfs_widget $value['c'.$n] = lang($path_parts[2]); break; case 4: - $value['c'.$n] .= ': '.egw_link::title($path_parts[2],$path_parts[3]); - //$value['c'.$n] = egw_link::title($path_parts[2],$path_parts[3]); + if (is_numeric($value['c'.$n])) $value['c'.$n] .= egw_link::title($path_parts[2],$path_parts[3]); break; } }