Commit bec7b9e7 authored by Hanno Schlichting's avatar Hanno Schlichting

LP #143391: Protect against missing acl_users.hasUsers on quick start page.

parent 001ac552
......@@ -144,6 +144,8 @@ Features Added
Bugs Fixed
++++++++++
- LP #143391: Protect against missing acl_users.hasUsers on quick start page.
- Fixed issue with sending text containing ':' from MailHost.
- MailHost will now ensure the headers it sets are 7bit.
......
......@@ -10,7 +10,7 @@
form_title='Zope Quick Start',
)">
<dtml-if expr="not PARENTS[0].acl_users.hasUsers()">
<dtml-if expr="_.hasattr (PARENTS[0].acl_users, 'hasUsers') and not PARENTS[0].acl_users.hasUsers()">
<div class="system-msg">
<h3>
You have not created any users in this Zope instance. In order to
......
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