$freelinking['wikinews'] = array(
'indicator' => '/w(ikinews|\n)/',
'translate' => array(' ' => '_'),
'replacement' => 'http://' . variable_get('freelinking_wikipedia_languagecode', language_default('language')) . '.wikinews.org/wiki/%1',
'tip' => t('Link to a wikinews page.'),
);
look at indicator: \n is break (new line).
maybe this? =>
$freelinking['wikinews'] = array(
'indicator' => '/w(ikinews|n)/',
'translate' => array(' ' => '_'),
'replacement' => 'http://' . variable_get('freelinking_wikipedia_languagecode', language_default('language')) . '.wikinews.org/wiki/%1',
'tip' => t('Link to a wikinews page.'),
);
Comments
Comment #2
gisleFixed in the last dev snapshot of the 7.x-3.x branch.
Comment #3
gisleThis should be fixed in version 7.x-3.4.
Please see the release notes.
Comment #4
ijortengab commentednew release... our hope..