Closed (fixed)
Project:
LTI Tool Provider
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
4 Dec 2012 at 23:53 UTC
Updated:
19 Dec 2012 at 06:00 UTC
lti_tool_provider_goto is used in place of drupal_goto inside the module, however it does not behave similarly to the outside world - it returns! Callers of drupal_goto expect the function to never return, and so do the functions inside the module.
All paths should be finished with drupal_exit() instead of a return, leaving only the valid path to really goto drupal_goto().
Comments
Comment #1
jzornig commentedI've replaced the returns with drupal_exit().