diff options
author | friendica <info@friendica.com> | 2012-03-31 15:25:17 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-31 15:25:17 -0700 |
commit | 53f799f2bc125fadf527e3c65e8e9882d53d9aea (patch) | |
tree | 62114f520a5aae5eebfc5331617aa0e17ae1942f /include/contact_widgets.php | |
parent | 7581b32bb38fe4e0f9703cc887a54984ebfe88ea (diff) | |
download | volse-hubzilla-53f799f2bc125fadf527e3c65e8e9882d53d9aea.tar.gz volse-hubzilla-53f799f2bc125fadf527e3c65e8e9882d53d9aea.tar.bz2 volse-hubzilla-53f799f2bc125fadf527e3c65e8e9882d53d9aea.zip |
handle escaped file chars in display and search
Diffstat (limited to 'include/contact_widgets.php')
-rwxr-xr-x | include/contact_widgets.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/contact_widgets.php b/include/contact_widgets.php index 1f70e536f..7346b95af 100755 --- a/include/contact_widgets.php +++ b/include/contact_widgets.php @@ -87,7 +87,7 @@ function fileas_widget($baseurl,$selected = '') { $cnt = preg_match_all('/\[(.*?)\]/',$saved,$matches,PREG_SET_ORDER); if($cnt) { foreach($matches as $mtch) { - $unescaped = file_tag_decode($mtch[1]); + $unescaped = xmlify(file_tag_decode($mtch[1])); $terms[] = array('name' => $unescaped,'selected' => (($selected == $unescaped) ? 'selected' : '')); } } |