Skip to content
Snippets Groups Projects
Commit 621c006c authored by Alex Barth's avatar Alex Barth
Browse files

#629096 quickcel: Fix underscores in feed creation link.

parent 66185487
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@
Feeds 6.x 1.0 xxxx, 200x-xx-xx
------------------------------
- #629096 quickcel: Fix underscores in feed creation link.
- #652848 BWPanda: Add 'clear-block' to admin-ui to fix float issues.
- #623424 Kars-T, Eugen Mayer, alex_b: Mapper for Taxonomy.
- #649552 rsoden: Provide variable for data table name.
......
......@@ -70,7 +70,7 @@ function feeds_ui_overview_form(&$form_status) {
}
else {
if (!$importer->disabled) {
$importer_form['attached']['#value'] = l(node_get_types('name', $importer->config['content_type']), 'node/add/'. $importer->config['content_type']);
$importer_form['attached']['#value'] = l(node_get_types('name', $importer->config['content_type']), 'node/add/'. str_replace('_', '-', $importer->config['content_type']));
}
else {
$importer_form['attached']['#value'] = node_get_types('name', $importer->config['content_type']);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment