- fixed additional slashes in the role titles;

This commit is contained in:
nikitasinelnikov
2020-08-26 23:47:26 +03:00
parent e5928ea2f9
commit 0e5dcd91b4
3 changed files with 5 additions and 3 deletions
@@ -350,7 +350,7 @@ class UM_Roles_List_Table extends WP_List_Table {
return sprintf('%1$s %2$s', '<strong><a class="row-title" href="admin.php?page=um_roles&tab=edit&id=' . $item['key'] . '">' . $item['name'] . '</a></strong>', $this->row_actions( $actions ) );
return sprintf('%1$s %2$s', '<strong><a class="row-title" href="admin.php?page=um_roles&tab=edit&id=' . $item['key'] . '">' . stripslashes( $item['name'] ) . '</a></strong>', $this->row_actions( $actions ) );
}