|
@@ -427,10 +427,16 @@ class special_formater
|
|
|
{
|
|
|
foreach($items as &$item)
|
|
|
{
|
|
|
- static $types = array('url','innerurl','video');
|
|
|
- if(in_array($item['type'],$types)){
|
|
|
+ static $action_types = array('url','video');
|
|
|
+ static $show_types = array('webview','video');
|
|
|
+
|
|
|
+ if(in_array($item['type'],$action_types)){
|
|
|
$item['data'] = htmlspecialchars_decode($item['data']);
|
|
|
}
|
|
|
+
|
|
|
+ if(in_array($item['show_type'],$show_types)){
|
|
|
+ $item['show_data'] = htmlspecialchars_decode($item['show_data']);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|