Commit 4b571a97 authored by Chris Withers's avatar Chris Withers

Fix python that broke the Lock Manager view in the Control Panel.

Fixes #651
parent e4d4fa89
...@@ -32,6 +32,8 @@ Zope Changes ...@@ -32,6 +32,8 @@ Zope Changes
Bugs Fixed Bugs Fixed
- Collector #651: WebDAV Lock Manager was broken.
- Collector #646: metal:slot was lost during the I18n merge. - Collector #646: metal:slot was lost during the I18n merge.
- Removed the signal handler hung off USR1 for packing the database. - Removed the signal handler hung off USR1 for packing the database.
......
...@@ -25,7 +25,8 @@ function toggleSelect() { ...@@ -25,7 +25,8 @@ function toggleSelect() {
//--> //-->
</script> </script>
<dtml-let lockedobjs="REQUEST.form.has_key('frompath','') and findLockedObjects(frompath=REQUEST.get('frompath','')) or []"> <dtml-let from_path="REQUEST.form.get('frompath',None)"
lockedobjs="from_path and findLockedObjects(frompath=from_path) or []">
<dtml-if lockedobjs> <dtml-if lockedobjs>
<p class="std-text">All locked objects <p class="std-text">All locked objects
......
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