| 108 | | $plugin_data['Description'] = wp_kses($plugin_data['Description'], array('a' => array('href' => array(),'title' => array()),'abbr' => array('title' => array()),'acronym' => array('title' => array()),'code' => array(),'em' => array(),'strong' => array()) ); ; |
|---|
| | 108 | |
|---|
| | 109 | $plugins_allowedtags = array('a' => array('href' => array(),'title' => array()),'abbr' => array('title' => array()),'acronym' => array('title' => array()),'code' => array(),'em' => array(),'strong' => array()); |
|---|
| | 110 | |
|---|
| | 111 | // Sanitize all displayed data |
|---|
| | 112 | $plugin_data['Title'] = wp_kses($plugin_data['Title'], $plugins_allowedtags); |
|---|
| | 113 | $plugin_data['Version'] = wp_kses($plugin_data['Version'], $plugins_allowedtags); |
|---|
| | 114 | $plugin_data['Description'] = wp_kses($plugin_data['Description'], $plugins_allowedtags); |
|---|
| | 115 | $plugin_data['Author'] = wp_kses($plugin_data['Author'], $plugins_allowedtags); |
|---|
| | 116 | |
|---|