When the module is installed and the success message (below) is displayed at the top of the modules page the link to the settings page is incorrect.

Update Status Proxy installed. To enable this module, please go to the settings page.

The link goes to: http://example.com/admin/build/@url

The line of code that needs to be fixed is below:

drupal_set_message(t('Update Status Proxy installed.  To enable this module, please go to <a href="@url">the settings page</a>.',
    array('%url' => url('admin/settings/update-status-proxy'))));

Change the %url in the array to @url.

Corrected code:

drupal_set_message(t('Update Status Proxy installed.  To enable this module, please go to <a href="@url">the settings page</a>.',
    array('@url' => url('admin/settings/update-status-proxy'))));

Hope that helps.

Comments

Rob Knight’s picture

Assigned: Unassigned » Rob Knight
Rob Knight’s picture

Status: Active » Fixed

Has been resolved in the 1.0 release.

Rob Knight’s picture

Status: Fixed » Closed (fixed)