Closed (fixed)
Project:
SEO Checklist
Version:
6.x-1.0-beta3
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
20 May 2009 at 10:50 UTC
Updated:
8 Aug 2009 at 01:09 UTC
The links on the settings page are generated in a slightly weird way (sorry!) .. This probably explains #445128: Don't identify correct path. The configure links take me to URLs such as http://example.com/admin/settings/SEOChecklist?q=admin/settings/clean-urls. While this works, I don't think it is supposed to!
Should really use http://api.drupal.org/api/function/l/6 which will do the hard work for you (yes if you've not met it, that is a function whose name is a lowercase letter L!!). That function adds the ?q= if necessary.
e.g. remove the ?q= from all the $option_conf_link and change
$conf_link="| <a href='$option_conf_link'>Configure</a> ";
to
$conf_link='| ' . l('Configure', $option_conf_link)<a href='$option_conf_link'>Configure</a> ";
BTW this is a v. interesting module, thanks!
Comments
Comment #1
that0n3guy commentedI can also confirm that this is an issue with 6.x
Comment #2
ben finklea commentedFixed in 2.0. Download it here: Drupal SEO Checklist