I know this is a minor issue but it might save some people some time.
In README.txt, you put '..printing (PHP): print ['uc_lto']['#value'];, enclosed in PHP tags'.
If someone tries the following:
print ['uc_lto']['#value'];
they'll get an error since it's not a proper variable name. I'd recommend updating it to say they can print by using the follow statement:
print $node->content['uc_lto']['#value'];
Definitely a minor issue but I had to dig through the $node object for a few minutes to find out where it was in the object.
Thanks for the module!
Comments
Comment #1
WebNewCastle commentedThank you. Things like this are important if it causes someone to spend time that could have been saved. And it's important for me to be reminded that just because "I know what I mean" is not the point or primary audience of a ReadMe file :-)