Closed (fixed)
Project:
Freelinking
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
2 Feb 2010 at 18:56 UTC
Updated:
19 Feb 2010 at 18:30 UTC
The current 6.x-1.x-dev release presents a WSOD due to a double quote (") toward the end of line 333:
$output .= '<li>' . t('[[this is the target|this is the source]] - will present "this is the source" as a link to "this is the target", or a page to create that content.") . '</li>';
This should obviously be a single quote:
$output .= '<li>' . t('[[this is the target|this is the source]] - will present "this is the source" as a link to "this is the target", or a page to create that content.') . '</li>';
Otherwise, this is an excellent module, and thank you for fixing the backlinking functionality.
Comments
Comment #1
Grayside commentedThank you.