
cherokee at cherokee-project
Jun 30, 2009, 9:20 AM
Post #1 of 1
(89 views)
Permalink
|
|
[3405] cherokee/trunk/admin/PageVServer.py: Fixes a problem in the admin: host name entries could not be changed
|
|
Revision: 3405 http://svn.cherokee-project.com/changeset/3405 Author: alo Date: 2009-06-30 18:20:01 +0200 (Tue, 30 Jun 2009) Log Message: ----------- Fixes a problem in the admin: host name entries could not be changed because of old values were not being purged. Thanks to Stefan de Konink for reporting. --This line, and those below, will be ignored-- M admin/PageVServer.py Modified Paths: -------------- cherokee/trunk/admin/PageVServer.py Modified: cherokee/trunk/admin/PageVServer.py =================================================================== --- cherokee/trunk/admin/PageVServer.py 2009-06-30 09:02:57 UTC (rev 3404) +++ cherokee/trunk/admin/PageVServer.py 2009-06-30 16:20:01 UTC (rev 3405) @@ -191,6 +191,8 @@ self._cfg['%s!match'%(pre)] = _type rule_module.apply_cfg (filtered_post) + del(self._cfg['tmp!new_rule']) + # Get to the details page return "%s/rule/%d" % (url_prefix, priority)
|