mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 02:10:45 +01:00
Strip and texturize importer title. Props Nazgul. fixes #2897
git-svn-id: http://svn.automattic.com/wordpress/branches/2.0@3987 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c97495ea1f
commit
0f4b1cd1fd
@ -36,7 +36,7 @@ if (empty ($importers)) {
|
||||
$style = '';
|
||||
foreach ($importers as $id => $data) {
|
||||
$style = ('class="alternate"' == $style || 'class="alternate active"' == $style) ? '' : 'alternate';
|
||||
$action = "<a href='admin.php?import=$id' title='{$data[1]}'>{$data[0]}</a>";
|
||||
$action = "<a href='admin.php?import=$id' title='".wptexturize(strip_tags($data[1]))."'>{$data[0]}</a>";
|
||||
|
||||
if ($style != '')
|
||||
$style = 'class="'.$style.'"';
|
||||
|
Loading…
Reference in New Issue
Block a user