Changes between Initial Version and Version 1 of Ticket #4626
- Timestamp:
- Jun 19, 2007, 7:36:05 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #4626 – Description
initial v1 1 1 I found it helpful for extra_context functions to have access to the context. 2 2 The change is in line 80: 3 3 {{{ 4 4 < if callable(value): 5 5 < c[key] = value() … … 7 7 > if callable(value): 8 8 > c[key] = value(c) 9 9 }}} 10 10 I'm not sure who decides on whether it should go to the version - it does changes the API