Closed (fixed)
Project:
Nodewords: D6 Meta Tags
Version:
6.x-1.13
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
5 Jan 2012 at 17:08 UTC
Updated:
14 Feb 2012 at 12:10 UTC
Jump to comment: Most recent file
Comments
Comment #1
damienmckennaWhat version of Drupal are you using? The latest 6.22? Do you get the error when you clear the site cache?
Also, was there a reason you selected "6.x-1.9" as the module version you're using? =)
Comment #2
jrockowitz commentedThe issue is the formatting of t() function is off in the nodewords_og_install() function.
http://drupalcode.org/project/nodewords.git/blob/refs/heads/6.x-1.x:/nod...
The t() function parentheses need to moved
This code...
drupal_set_message(t("Please see the README.txt file included with the Nodewords module for instructions on customizing the theme to make this work correctly.", 'warning'));Should be...
drupal_set_message(t("Please see the README.txt file included with the Nodewords module for instructions on customizing the theme to make this work correctly."), 'warning');Comment #3
damienmckenna@jrockowitz: Ah, thank you for spotting that. #facepalm.
Comment #4
damienmckennaI've committed the fix. Thanks for spotting the problem, jrockowitz!