handle-client-request
- render-dirty-widgets
- render-widget w :inline t <---
(defmethod render-widget ...
....
(if inlinep
(apply #'render-widget-body obj args) <----
(apply #'with-widget-header obj #'render-widget-body
(append
(when (widget-prefix-fn obj)
(list :widget-prefix-fn (widget-prefix-fn obj)))
(when (widget-suffix-fn obj)
(list :widget-suffix-fn (widget-suffix-fn obj)))
args)))
Shouldn't the prefix also appended when in inline mode?
Helmut
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"weblocks" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/weblocks?hl=en
-~----------~----~----~----~------~----~------~--~---