Upgraded to Drupal 6.17 and Token token-6.x-1.13 and now any page displaying "'Rep[lacement]Tags - Help' section" causes an apache error and page won't load.
PHP Fatal error: Call to undefined function theme_token_help() in sites/all/modules/reptag/tags/token.tags.inc on line 21
The quick fix is to disable "Show 'Rep[lacement]Tags - Help' section on add/edit node pages" on /admin/settings/reptag/admin
| Comment | File | Size | Author |
|---|---|---|---|
| #5 | 820822.patch | 556 bytes | geerlingguy |
Comments
Comment #1
beyond67 commentedSubscribe
Comment #2
geerlingguy commentedI'm getting:
Fatal error: Call to undefined function theme_token_help() in ~/reptag/tags/token.tags.inc on line 21Comment #3
anodyne commentedThis can be fixed by changing the contents of _reptag_token_help() inside token.tags.inc:
function _reptag_token_help() {
return theme('token_help', 'node');
}
Thanks to Dave Reid who mentioned this in a post on the Token Issues page:
http://drupal.org/node/839108
Comment #4
geerlingguy commentedI can confirm this is the problem (thanks, @anodyne!). I will supply a patch in a few minutes...
Comment #5
geerlingguy commentedPatch attached. I would set to reviewed & tested, but I'll wait for someone else to verify first :)
Comment #6
Richard Arkner commentedI've just applied the patch to Drupal 6.19 on CentOS 5.3 - working fine! I'm not sure that's enough of a review but it's a one-line change so maybe it is.
Comment #7
geerlingguy commentedLooks like we can set RTBC.
Comment #8
summit commentedSubcribe greetings Martijn
Comment #9
mrwiggles commentedSubscribe
Comment #10
Renee S commentedConfirmed WSOD, patch fixed. Thanks =)
Comment #11
geerlingguy commented