Commit d07d2522 authored by Lennart Regebro's avatar Lennart Regebro

Collector #331: Referenses to URL in manage_tabs was changed

to REQUEST.URL to prevent accidental overriding.
parent d2b434af
......@@ -30,6 +30,9 @@ Zope Changes
Bugs fixed
- Collector #331: Referenses to URL in manage_tabs was changed
to REQUEST.URL to prevent accidental overriding.
- Made the control panel properly reflect the cache-size setting
of ZODB's object cache once again.
......
......@@ -3,8 +3,8 @@
<dtml-call "REQUEST.set('n_', _.len(manage_options)-1)">
<dtml-call "REQUEST.set('a_', 0)">
<dtml-in manage_options mapping>
<dtml-if expr="URL[-(_.len(action)):]==action or
URL[-17:]=='/manage_workspace' and _['sequence-start']">
<dtml-if expr="REQUEST.URL[-(_.len(action)):]==action or
REQUEST.URL[-17:]=='/manage_workspace' and _['sequence-start']">
<dtml-call "REQUEST.set('a_', _['sequence-index'])">
</dtml-if>
<dtml-if "_.has_key('management_view') and management_view==label">
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment