diff -r a4fcee1e9789 -r 2cc16363d6a3 web/views/basetemplates.py --- a/web/views/basetemplates.py Thu Mar 24 09:43:25 2016 +0100 +++ b/web/views/basetemplates.py Tue Jun 21 07:42:30 2016 +0200 @@ -508,8 +508,10 @@ stitle = u' ' w(u'
%s
' % stitle) w(u'
\n') - if showmessage and self._cw.message: - w(u'
%s
\n' % self._cw.message) + # don't call self._cw.message twice since it pops the id + msg = self._cw.message + if showmessage and msg: + w(u'
%s
\n' % msg) config = self._cw.vreg.config if config['auth-mode'] != 'http': self.login_form(id) # Cookie authentication